mirror of https://github.com/zulip/zulip.git
Add HelpTest for help pages.
This commit is contained in:
parent
02cf40ade8
commit
fad0a86554
|
@ -1760,6 +1760,13 @@ class GetProfileTest(ZulipTestCase):
|
|||
get_avatar_url(user_profile.avatar_source, user_profile.email),
|
||||
)
|
||||
|
||||
class HelpTest(ZulipTestCase):
|
||||
def test_browser_window_help(self):
|
||||
# type: () -> None
|
||||
result = self.client_get('/help/#the-browser-window')
|
||||
self.assertEqual(result.status_code, 200)
|
||||
self.assertIn("There are three panes", result.content.decode("utf-8"))
|
||||
|
||||
class HomeTest(ZulipTestCase):
|
||||
@slow('big method')
|
||||
def test_home(self):
|
||||
|
|
Loading…
Reference in New Issue