test(trip-cluster): Playwright UI — grid nav, lightbox, cluster switching, approve

This commit is contained in:
2026-06-27 17:35:58 +02:00
parent edf0735098
commit c4ff5bcb06
3 changed files with 114 additions and 0 deletions
@@ -0,0 +1,9 @@
def test_health(base_url, page):
page.goto(f"{base_url}/health")
assert "ok" in page.content()
def test_index_lists_clusters(base_url, page):
page.goto(base_url)
assert "Venice" in page.inner_text("body")
assert "Rome" in page.inner_text("body")