make this branch exactly like the pre-upgrade branch

This commit is contained in:
Kenneth Kehl
2025-06-09 14:24:47 -07:00
parent 63abd500b6
commit deec2bc785
4 changed files with 104 additions and 105 deletions

View File

@@ -12,7 +12,7 @@ from tests.end_to_end.conftest import check_axe_report
E2E_TEST_URI = os.getenv("NOTIFY_E2E_TEST_URI")
def create_new_template(page):
async def create_new_template(page):
current_service_link = page.get_by_text("Current service")
expect(current_service_link).to_be_visible()
@@ -84,6 +84,7 @@ def create_new_template(page):
page.wait_for_load_state("domcontentloaded")
preview_button = page.get_by_text("Preview")
assert await preview_button.evaluate("el => el.tagName") == "BUTTON"
expect(preview_button).to_be_visible()
preview_button.click()