Test the history indicator widget, in local GUI tests

This commit is contained in:
Micah Lee 2018-09-30 11:41:07 -07:00
parent f5c7acf8f2
commit 3fd7581995
No known key found for this signature in database
GPG key ID: 403C2657CD994F73
7 changed files with 89 additions and 4 deletions

View file

@ -171,14 +171,18 @@ class OnionShareGuiTest(unittest.TestCase):
CommonTests.test_counter_incremented(self, 'receive', 2)
@pytest.mark.run(order=24)
def test_history_indicator(self):
CommonTests.test_history_indicator(self, 'receive', False)
@pytest.mark.run(order=25)
def test_server_is_stopped(self):
CommonTests.test_server_is_stopped(self, 'receive', False)
@pytest.mark.run(order=25)
@pytest.mark.run(order=26)
def test_web_service_is_stopped(self):
CommonTests.test_web_service_is_stopped(self)
@pytest.mark.run(order=26)
@pytest.mark.run(order=27)
def test_server_status_indicator_says_closed(self):
CommonTests.test_server_status_indicator_says_closed(self, 'receive', False)