Initial public release
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
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
This commit is contained in:
@@ -0,0 +1,30 @@
|
||||
from pathlib import Path
|
||||
|
||||
|
||||
REPO_ROOT = Path(__file__).resolve().parents[2]
|
||||
|
||||
|
||||
def test_data_workspace_uses_compact_catalog_layout() -> None:
|
||||
css = (REPO_ROOT / "frontend" / "src" / "styles" / "app.css").read_text(encoding="utf-8")
|
||||
|
||||
assert "Sprint 114 data/map usability pass" in css
|
||||
assert ".workspace-grid-data" in css
|
||||
assert "grid-template-columns: minmax(18rem, 0.78fr) minmax(24rem, 1.22fr)" in css
|
||||
assert ".dataset-action-grid" in css
|
||||
assert "grid-template-columns: repeat(4, minmax(0, 1fr))" in css
|
||||
assert ".dataset-action-button small" in css
|
||||
assert "display: none;" in css
|
||||
|
||||
|
||||
def test_map_workspace_prioritizes_map_before_dense_controls() -> None:
|
||||
css = (REPO_ROOT / "frontend" / "src" / "styles" / "app.css").read_text(encoding="utf-8")
|
||||
|
||||
assert ".map-context-summary" in css
|
||||
assert "order: 1;" in css
|
||||
assert ".map-frame-surface" in css
|
||||
assert "order: 2;" in css
|
||||
assert ".map-control-surface" in css
|
||||
assert "order: 3;" in css
|
||||
assert ".map-inspection-surface" in css
|
||||
assert "order: 6;" in css
|
||||
assert "min-height: 34rem;" in css
|
||||
Reference in New Issue
Block a user