Files
devplacepy/tests/e2e/devii/index.py
T
retoor 43f4011005 chore: reorganize test files into domain-specific subdirectories under tests/
Split the monolithic test directory into three tiers (unit, api, e2e) with a path-mirroring directory structure. Added corresponding Makefile targets (test-unit, test-api, test-e2e) and updated all documentation references (CLAUDE.md, README.md, testing-cicd.html, testing-framework.html, testing-make.html) to reflect the new layout and naming conventions.
2026-06-13 14:32:33 +00:00

9 lines
216 B
Python

# retoor <retoor@molodetz.nl>
from tests.conftest import BASE_URL
def test_devii_page_loads(page, app_server):
page.goto(f"{BASE_URL}/devii/", wait_until="domcontentloaded")
assert "Devii" in page.title()