feat: Implement MFA authentication, add ride statistics model, and update various services, APIs, and tests across the application.

This commit is contained in:
pacnpal
2025-12-28 17:32:53 -05:00
parent aa56c46c27
commit c95f99ca10
452 changed files with 7948 additions and 6073 deletions

View File

@@ -83,7 +83,7 @@ class TestParkDetailPage:
page.goto(f"{live_server.url}/parks/{park.slug}/")
# Look for rides section/tab
rides_section = page.locator(
page.locator(
"[data-testid='rides-section'], #rides, [role='tabpanel']"
)
@@ -162,7 +162,7 @@ class TestParkNavigation:
# Click parks link in breadcrumb
breadcrumb.get_by_role("link", name="Parks").click()
expect(page).to_have_url(f"**/parks/**")
expect(page).to_have_url("**/parks/**")
def test__back_button__returns_to_previous_page(
self, page: Page, live_server, parks_data
@@ -179,4 +179,4 @@ class TestParkNavigation:
# Go back
page.go_back()
expect(page).to_have_url(f"**/parks/**")
expect(page).to_have_url("**/parks/**")