GeoIntel release gates / Compile, test, contracts and builds (push) Successful in 1m49s
GeoIntel release gates / Python and npm vulnerability policy (push) Successful in 21s
GeoIntel release gates / Production AI image, SBOM and container scan (push) Successful in 5m39s
GeoIntel release gates / Deploy exact gated revision to Unraid (push) Failing after 58m43s
22 lines
723 B
Python
22 lines
723 B
Python
from pathlib import Path
|
|
|
|
|
|
ROOT = Path(__file__).resolve().parents[2]
|
|
|
|
|
|
def test_export_handoff_cards_use_width_aware_grid() -> None:
|
|
css = (ROOT / "frontend" / "src" / "styles" / "app.css").read_text(encoding="utf-8")
|
|
|
|
assert ".handoff-action-grid" in css
|
|
assert "repeat(auto-fit, minmax(11rem, 1fr))" in css
|
|
assert ".export-center .handoff-readiness-grid" in css
|
|
assert "repeat(auto-fit, minmax(7.5rem, 1fr))" in css
|
|
|
|
|
|
def test_public_readme_documents_desktop_and_mobile_workspace() -> None:
|
|
readme = (ROOT / "README.md").read_text(encoding="utf-8")
|
|
|
|
assert "geointel-workbench-wide.png" in readme
|
|
assert "geointel-workbench-mobile.png" in readme
|
|
assert "Mobiele werkruimte" in readme
|