fix: load complete temporal dataset inventory
GeoIntel CI / docs-smoke (push) Canceled after 0s
GeoIntel CI / contract-smoke (push) Canceled after 0s

This commit is contained in:
Codex
2026-07-15 12:22:37 +02:00
parent fb38eb3e91
commit 232e8c2126
5 changed files with 66 additions and 4 deletions
@@ -133,3 +133,12 @@ def test_waterinfo_operator_is_packaged_and_readiness_checked() -> None:
assert "COPY scripts/provision_waterinfo_station_history.py" in dockerfile
assert '"provision_waterinfo_station_history.py"' in vector_service
assert '"sum", "mean", "area_weighted_sum"' in vector_service
assert '"status": "no_stations_in_area"' in (ROOT / "scripts" / "provision_waterinfo_station_history.py").read_text(encoding="utf-8")
def test_frontend_loads_all_dataset_pages_after_temporal_import_expansion() -> None:
client = (ROOT / "frontend" / "src" / "services" / "api" / "datasets.ts").read_text(encoding="utf-8")
assert "DATASET_PAGE_SIZE = 200" in client
assert "offset < (total ?? 0)" in client
assert "items.length !== total" in client