Files
geointel/backend/tests/test_sprint66_live_workspace_smoke_polish.py
T
Jens 2cdf9c99c6
Managed validation / Managed repository validation (pull_request) Successful in 1m46s
GeoIntel release gates / Compile, test, contracts and builds (pull_request) Successful in 1m51s
GeoIntel release gates / Python and npm vulnerability policy (pull_request) Successful in 20s
GeoIntel release gates / Production AI image, SBOM and container scan (pull_request) Successful in 15m3s
GeoIntel release gates / Deploy exact gated revision to Unraid (pull_request) Skipped
Prepare GeoIntel for public release
2026-08-31 21:33:10 +02:00

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