mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-09-09 17:45:32 -04:00
SCSS refactor, theme cleanup
This commit is contained in:
@@ -108,7 +108,7 @@ def e2e_created_service(e2e_test_service): # noqa: PT022
|
||||
page.goto(f"{E2E_TEST_URI}/accounts")
|
||||
page.wait_for_load_state("domcontentloaded")
|
||||
|
||||
add_service_button = page.get_by_role("button", name="Add a new service")
|
||||
add_service_button = page.get_by_role("button", name="Add service")
|
||||
add_service_button.click()
|
||||
page.wait_for_load_state("domcontentloaded")
|
||||
|
||||
|
||||
@@ -29,9 +29,7 @@ def test_add_new_service_workflow(e2e_test_service):
|
||||
expect(sign_in_heading).to_be_visible()
|
||||
|
||||
# Retrieve some prominent elements on the page for testing.
|
||||
add_service_button = page.get_by_role(
|
||||
"button", name=re.compile("Add a new service")
|
||||
)
|
||||
add_service_button = page.get_by_role("button", name=re.compile("Add service"))
|
||||
|
||||
expect(add_service_button).to_be_visible()
|
||||
|
||||
|
||||
@@ -119,9 +119,7 @@ def test_create_new_template(end_to_end_context):
|
||||
expect(sign_in_heading).to_be_visible()
|
||||
|
||||
# Retrieve some prominent elements on the page for testing.
|
||||
add_service_button = page.get_by_role(
|
||||
"button", name=re.compile("Add a new service")
|
||||
)
|
||||
add_service_button = page.get_by_role("button", name=re.compile("Add service"))
|
||||
|
||||
expect(add_service_button).to_be_visible()
|
||||
|
||||
|
||||
@@ -32,9 +32,7 @@ def _setup(page):
|
||||
expect(sign_in_heading).to_be_visible()
|
||||
|
||||
# Retrieve some prominent elements on the page for testing.
|
||||
add_service_button = page.get_by_role(
|
||||
"button", name=re.compile("Add a new service")
|
||||
)
|
||||
add_service_button = page.get_by_role("button", name=re.compile("Add service"))
|
||||
|
||||
expect(add_service_button).to_be_visible()
|
||||
|
||||
|
||||
@@ -34,9 +34,7 @@ def _setup(page):
|
||||
expect(sign_in_heading).to_be_visible()
|
||||
|
||||
# Retrieve some prominent elements on the page for testing.
|
||||
add_service_button = page.get_by_role(
|
||||
"button", name=re.compile("Add a new service")
|
||||
)
|
||||
add_service_button = page.get_by_role("button", name=re.compile("Add service"))
|
||||
|
||||
expect(add_service_button).to_be_visible()
|
||||
|
||||
|
||||
Reference in New Issue
Block a user