fixed applet seeding in 0005 migration; many FTs & ITs now require authentication before they pass; New List & My Lists converted to dash applets; home.html offloaded and _applets.html onboarded w. these applets
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
This commit is contained in:
@@ -8,6 +8,7 @@ from .list_page import ListPage
|
||||
class NewVisitorTest(FunctionalTest):
|
||||
# Test methods
|
||||
def test_can_start_a_todo_list(self):
|
||||
self.create_pre_authenticated_session("alice@test.io")
|
||||
self.browser.get(self.live_server_url)
|
||||
list_page = ListPage(self)
|
||||
|
||||
@@ -29,6 +30,7 @@ class NewVisitorTest(FunctionalTest):
|
||||
list_page.wait_for_row_in_list_table("Buy peacock feathers", 1)
|
||||
|
||||
def test_multiple_users_can_start_lists_at_different_urls(self):
|
||||
self.create_pre_authenticated_session("alice@test.io")
|
||||
self.browser.get(self.live_server_url)
|
||||
list_page = ListPage(self)
|
||||
list_page.add_list_item("Buy peacock feathers")
|
||||
@@ -41,6 +43,7 @@ class NewVisitorTest(FunctionalTest):
|
||||
|
||||
self.browser.delete_all_cookies()
|
||||
|
||||
self.create_pre_authenticated_session("disco@test.io")
|
||||
self.browser.get(self.live_server_url)
|
||||
list_page = ListPage(self)
|
||||
page_text = self.browser.find_element(By.TAG_NAME, 'body').text
|
||||
|
||||
Reference in New Issue
Block a user