15 lines
368 B
Python
15 lines
368 B
Python
"""E2E smoke: /reports."""
|
|
|
|
from __future__ import annotations
|
|
|
|
import pytest
|
|
|
|
pytestmark = pytest.mark.e2e
|
|
|
|
|
|
def test_reports_page_loads(zootech_authenticated_page, live_server_url) -> None:
|
|
page = zootech_authenticated_page
|
|
page.goto(f"{live_server_url}/reports")
|
|
page.wait_for_load_state("domcontentloaded")
|
|
assert page.locator("body").is_visible()
|