other files inadvertently skipped in prev commit

This commit is contained in:
Disco DeDisco
2026-01-03 19:21:40 -05:00
parent a393628ca2
commit 8955d51474
3 changed files with 23 additions and 31 deletions

View File

@@ -33,9 +33,9 @@ class NewVisitorTest(LiveServerTestCase):
def test_can_start_a_todo_list(self):
self.browser.get(self.live_server_url)
self.assertIn('Dashboard', self.browser.title)
self.assertIn('Dashboard | ', self.browser.title)
header_text = self.browser.find_element(By.TAG_NAME, 'h1').text
self.assertIn('Dashboard', header_text)
self.assertIn('Dashboard | ', header_text)
inputbox = self.browser.find_element(By.ID, 'id-new-item')
self.assertEqual(inputbox.get_attribute('placeholder'), 'Enter a to-do item')