Quality / quality
Framework
Quality Framework — evidence
The requirements to tests to evidence loop itself: matrix extraction, test-name conventions, evidence normalization across testthat and vitest, drift guards, and the published evidence pages.
63reviewed requirementsquality.md
155test recordsjs-unit · r-unit
0failing155 passing
97%requirement coverage61/63 evidenced
Requirements
| ID | Area | Requirement | Evidence type | Result |
|---|---|---|---|---|
| QC-MATRIX-001 | Extraction | A requirement matrix row contributes to the extract only when its ID cell is exactly a requirement ID matching ^[A-Z]{2,4}-[A-Z]+-\d+[A-D]?$ and its requirement text is non-empty. | js-unit | 1 passing |
| QC-MATRIX-002 | Extraction | When a table header row is present, columns are located by name (ID, Area, Requirement, Source, Evidence Type, Status); the safety.viz positional layout is the fallback. | js-unit | 2 passing |
| QC-MATRIX-003 | Extraction | Requirement text containing an escaped pipe (|) is extracted intact rather than split into two cells. | js-unit | 1 passing |
| QC-MATRIX-004 | Extraction | Tables in the document that are not requirement tables, and prose containing requirement IDs, contribute nothing to the extract. | js-unit | 1 passing |
| QC-MATRIX-005 | Extraction | The committed extract is timestamp-free and a pure function of the matrix content, so the freshness guard is a plain content comparison. | js-unit | 2 passing |
| QC-DRIFT-001 | Guards | requirements --check reports added, removed and text-changed requirement IDs and exits non-zero when the committed extract differs from a fresh extraction. | js-unit | 2 passing |
| QC-DRIFT-002 | Guards | evidence --check reports missing tests, new tests and pass/fail changes, and ignores provenance and traceability fields entirely. | js-unit | 2 passing |
| QC-NAME-001 | Convention | Every test title in both suites matches "<REQ-ID>[, <REQ-ID>]: <description> (#<issue>)"; a guard test in each suite enforces it. | js-unit | 2 passing |
| QC-NAME-002 | Convention | Requirement IDs and issue references are parsed out of a test title, supporting several IDs and several issue refs in one title. | js-unit | 3 passing |
| QC-EVID-001 | Evidence | Vitest JSON reporter output normalizes into contracts §8 records carrying requirementIds, title, suite, passed and file. | js-unit | 6 passing |
| QC-EVID-002 | Evidence | testthat results from qc/testthat-results.json normalize into the same record shape with suite: "r-unit". | js-unit | 1 passing |
| QC-EVID-003 | Evidence | Any testthat status that is not exactly pass (fail, error, skip) records as not passed, so the evidence page never overstates a run. | js-unit | 1 passing |
| QC-EVID-004 | Evidence | Human review of a text block records as a text-review suite record carrying reviewedBy and reviewedAt, so one page shows automated and human evidence together. | js-unit | 2 passing |
| QC-ROUTE-001 | Routing | A JS test file routes to its module by path — tests/unit/<module>/** or tests/unit/<module>-<topic>.test.js. | js-unit | 2 passing |
| QC-ROUTE-002 | Routing | An R test file test-<module>[-<topic>].R routes to <module> by longest-prefix match against the registry. | js-unit | 1 passing |
| QC-ROUTE-003 | Routing | A test that routes to no module is shared scaffold and is duplicated into every module's evidence set, so each set is self-contained. | js-unit | 2 passing |
| QC-ROUTE-004 | Routing | The module universe comes from site/config.json — components plus displays — so registering a display is all it takes for its evidence set to appear. | js-unit | 1 passing |
| QC-ROUTE-005 | Routing | A component whose test files are named by topic rather than by module declares its file stems in the registry (testPrefixes), and the longest declared prefix wins. | js-unit | 2 passing |
| QC-ROUTE-006 | Routing | A whole suite may be owned by one component through the registry (suites), which is how text-review records route to the Text Library regardless of file path. | js-unit | 1 passing |
| QC-ROUTE-007 | Routing | When a test file covers several modules, records route by the requirement-ID prefixes their owning registry entries declare; a record whose IDs no entry claims stays shared. | js-unit | 2 passing |
| QC-EVID-005 | Evidence | A text block awaiting human approval is reported as pending review and blocks assembly, but does not fail the evidence run — draft is a lifecycle state, not a defect. | js-unit | 1 passing |
| QC-EVID-006 | Evidence | Test-file paths in a committed evidence set are recorded relative to the repository root, including when the run happens in a git worktree, so the artifact names the repository rather than the machine that produced it. | js-unit | 5 passing |
| QC-UNRES-001 | Resolution | Requirement IDs referenced by a test but defined in no matrix are reported as UNRESOLVED at build time and rendered on the Quality page. | js-unit | 2 passing |
| QC-UNRES-002 | Resolution | Reviewed requirements that no test references are reported as uncovered, with a coverage proportion per component. | js-unit | 1 passing |
| QC-UNRES-003 | Resolution | An ID defined in a sibling component's matrix counts as resolved, not unresolved, so shared IDs do not produce false alarms. | js-unit | 1 passing |
| QC-SITE-001 | Site | The shared shell substitutes title, description, navigation and root prefix, so one build serves the site at any mount depth via relative URLs. | js-unit | 4 passing |
| QC-SITE-002 | Site | The build fails when any internal href/src in the emitted HTML does not resolve to an emitted file. | js-unit | 4 passing |
| QC-SITE-003 | Site | The build fails when the emitted site references any external resource — script, stylesheet, font, image or CSS import — so the whole site works offline. | js-unit | 3 passing |
| QC-SITE-004 | Site | HTML embedded from the pipeline (a rendered display, an assembled fragment) is stripped of scripts, event handlers, external stylesheets and document wrappers before it is placed on a page. | js-unit | 5 passing |
| QC-SITE-005 | Site | A registry entry's status is derived from the filesystem — planned until an ARD exists, built once it does, evidenced once an evidence set does. | js-unit | 7 passing |
| QC-SITE-006 | Site | Every page renders a documented "not yet generated" state when its input is absent, and the build never throws on a missing or malformed input. | js-unit | 8 passing |
| QC-SITE-007 | Site | A display directory present on disk but absent from the registry renders as an unregistered card rather than disappearing from the gallery. | js-unit | 1 passing |
| QC-CI-001 | CI | CI runs the JS suite, both freshness guards and the site build on every pull request, and runs the R suite in a separate job. | ci | no test |
| QC-CI-002 | CI | The built site publishes to GitHub Pages from the default branch through actions/deploy-pages under the pages concurrency group. | ci | no test |
| QC-DEMO-001 | Demo | The Demo app's selection — active tab, display, text block, focus target — round-trips losslessly through the URL hash, so any view of the report is a shareable link. | js-unit | 2 passing |
| QC-DEMO-002 | Demo | An unknown or absent tab in a deep link decodes to the default tab; the four tabs are Reader, Tables, Text and Templates. | js-unit | 2 passing |
| QC-DEMO-003 | Demo | A link from one pane to another pane's standalone surface resolves to a tab switch carrying the selection it named — a display permalink selects that display, a text-block anchor selects that block — at any authored path depth. | js-unit | 4 passing |
| QC-DEMO-004 | Demo | Links that are not pane crossings are left to navigate: Quality, Design & Research, absolute URLs, and bare fragments (which are in-pane scrolling). | js-unit | 2 passing |
| QC-DEMO-005 | Demo | A crossing that names no display keeps the display already selected, so moving between panes does not silently reset what the visitor was looking at. | js-unit | 2 passing |
| QC-DEMO-006 | Demo | A display slug that is not in the build falls back to the first available display rather than rendering a blank pane. | js-unit | 1 passing |
| QC-DEMO-007 | Demo | Every pane is server-rendered and present in the emitted HTML with exactly one visible; the app's tablist uses its own class vocabulary and carries the tablist/tab/tabpanel ARIA wiring. | js-unit | 3 passing |
| QC-DEMO-008 | Demo | A tab whose pane did not render is dropped from the tablist rather than shown empty. | js-unit | 1 passing |
| QC-DEMO-009 | Demo | The Tables pane renders one panel per display and one picker entry per display, shows exactly one, opens on the requested display, and falls back to the first when the request is unknown. | js-unit | 3 passing |
| QC-DEMO-010 | Demo | An empty display library renders the documented empty state rather than an app with no content. | js-unit | 1 passing |
| QC-DEMO-011 | Demo | The Templates pane renders every section of the E3 model, marking those this report does not populate, rather than trimming the skeleton to what happens to be built. | js-unit | 1 passing |
| QC-DEMO-012 | Demo | Display numbers in the Templates pane are derived from assembly order by the same tested function the assembler uses, never authored; reordering the assembly moves every number and changes no slug. | js-unit | 2 passing |
| QC-DEMO-013 | Demo | The Templates pane renders its documented empty state when the section model is missing, and renders correctly on a tree where the assembler has never run. | js-unit | 2 passing |
| QC-DEMO-014 | Demo | The auto-generated provenance section is identified as generated in the Templates pane. | js-unit | 1 passing |
| QC-DEMO-016 | Demo | The application strip's four views are real links to real pages, marked with aria-current rather than tab-selection state, so the bar is working navigation with no JavaScript and the client only upgrades it. | js-unit | 2 passing |
| QC-DEMO-017 | Demo | The application strip carries a live context readout — study, assigned display number, slug, iteration and short ARD hash — built from an embedded index that is escaped so it cannot close its own script element. | js-unit | 3 passing |
| QC-DEMO-018 | Demo | The navigation tree is rooted at the study, with documents, displays and text as the collections beneath it; more than one document is listed, and one that is not built is marked rather than hidden. | js-unit | 2 passing |
| QC-DEMO-019 | Demo | A display records the documents that reference it rather than living inside one, and a text block that is not on disk is left out of the tree while a draft block is flagged in it. | js-unit | 2 passing |
| QC-DEMO-020 | Demo | The explorer renders the study, every group with its item count, opens only the active group, and marks the selected item. | js-unit | 2 passing |
| QC-DEMO-021 | Demo | Every selectable item in the explorer is a real link carrying its own deep link, and an unbuilt item is not a link at all. | js-unit | 2 passing |
| QC-DEMO-022 | Demo | The header carries a Read/Edit mode control in which Read is current and Edit is genuinely disabled, and the explorer renders without throwing on an empty registry. | js-unit | 2 passing |
| QC-DEMO-023 | Demo | A built document contributes its own top-level sections to the tree, and a section counts as populated when it or anything beneath it is; an unbuilt document contributes none. | js-unit | 3 passing |
| QC-DEMO-024 | Demo | Sections render beneath their own document, each a deep link to its heading, with unpopulated sections still navigable and labelled as modelled-but-not-populated. | js-unit | 2 passing |
| QC-DEMO-025 | Demo | Every explorer node with children carries a real disclosure button — keyboard-reachable, named for a screen reader, with aria-expanded and aria-controls — and a node with nothing beneath it carries none. | js-unit | 2 passing |
| QC-DEMO-026 | Demo | Sections the report does not populate are dimmed as a whole row and keep the tooltip that explains why, while populated sections stay at full contrast; a group with no items renders as a heading rather than an empty folder. | js-unit | 2 passing |
| QC-DEMO-027 | Demo | The Values pane shows every value's name, number and provenance — an ARD address with its iteration and hash, or the declared arithmetic for a derived value — and the text blocks that cite it. | js-unit | 2 passing |
| QC-DEMO-028 | Demo | The Values pane states the verdict of the gate that re-derived the store against the committed ARDs, and renders a documented empty state when no store exists. | js-unit | 2 passing |
| QC-DEMO-029 | Demo | Values are a collection of the study in the navigation tree, listed with their formatted numbers, and selecting one focuses it in the pane rather than introducing a fourth selection key. | js-unit | 1 passing |
| QC-SITE-008 | Site | site/site.css parses as a whole: every block is closed, no block is closed that was never opened, and no declaration sits outside a rule — so no rule in the file can be silently dead in the browser. | js-unit | 3 passing |
Test records
| Result | Suite | Test | Requirements | File |
|---|---|---|---|---|
| pass | js-unit | a document contents in the tree QC-DEMO-023: a section counts as populated when anything beneath it is (#1) | QC-DEMO-023 | tests/unit/site-demo.test.js |
| pass | js-unit | a document contents in the tree QC-DEMO-023: an unbuilt document contributes no sections (#1) | QC-DEMO-023 | tests/unit/site-demo.test.js |
| pass | js-unit | a document contents in the tree QC-DEMO-023: the document lists its own top-level sections, not the whole model (#1) | QC-DEMO-023 | tests/unit/site-demo.test.js |
| pass | js-unit | a document contents in the tree QC-DEMO-024: sections render under their document, each a deep link to its heading (#1) | QC-DEMO-024 | tests/unit/site-demo.test.js |
| pass | js-unit | a document contents in the tree QC-DEMO-024: the sections belong to their document, so a second document has its own (#1) | QC-DEMO-024 | tests/unit/site-demo.test.js |
| pass | js-unit | a document contents in the tree QC-DEMO-025: a node with children carries a keyboard-reachable disclosure control (#1) | QC-DEMO-025 | tests/unit/site-demo.test.js |
| pass | js-unit | a document contents in the tree QC-DEMO-025: a node with nothing beneath it gets no chevron at all (#1) | QC-DEMO-025 | tests/unit/site-demo.test.js |
| pass | js-unit | a document contents in the tree QC-DEMO-026: a group with no items is a heading rather than an empty folder (#1) | QC-DEMO-026 | tests/unit/site-demo.test.js |
| pass | js-unit | a document contents in the tree QC-DEMO-026: an unpopulated section is dimmed and keeps its explanatory tooltip (#1) | QC-DEMO-026 | tests/unit/site-demo.test.js |
| pass | js-unit | design and research pages QC-SITE-001: a link to a file that is not a rendered page points at the repository (#1) | QC-SITE-001 | tests/unit/site-render.test.js |
| pass | js-unit | design and research pages QC-SITE-001: cross-references between documents rewrite to the built pages (#1) | QC-SITE-001 | tests/unit/site-render.test.js |
| pass | js-unit | design and research pages QC-SITE-006: a registered document that is missing is listed and flagged (#1) | QC-SITE-006 | tests/unit/site-render.test.js |
| pass | js-unit | embedded HTML sanitization QC-SITE-004: matrix-cell markdown renders as code spans with the HTML still escaped (#1) | QC-SITE-004 | tests/unit/site-validate.test.js |
| pass | js-unit | embedded HTML sanitization QC-SITE-004: sanitizing an absent fragment yields an empty string, not a crash (#1) | QC-SITE-004 | tests/unit/site-validate.test.js |
| pass | js-unit | embedded HTML sanitization QC-SITE-004: scripts, handlers, external stylesheets and imports are stripped (#1) | QC-SITE-004 | tests/unit/site-validate.test.js |
| pass | js-unit | embedded HTML sanitization QC-SITE-004: text interpolated into a page is HTML-escaped (#1) | QC-SITE-004 | tests/unit/site-validate.test.js |
| pass | js-unit | embedded HTML sanitization QC-SITE-004: the document wrapper is unwrapped and the table content preserved (#1) | QC-SITE-004 | tests/unit/site-validate.test.js |
| pass | js-unit | evidence freshness guard QC-DRIFT-002: a missing test, a new test and a status change are all drift (#1) | QC-DRIFT-002 | tests/unit/evidence-normalize.test.js |
| pass | js-unit | evidence freshness guard QC-DRIFT-002: provenance and traceability differences alone are not drift (#1) | QC-DRIFT-002 | tests/unit/evidence-normalize.test.js |
| pass | js-unit | evidence records name the repository, not the machine QC-EVID-006: a path from a git worktree records as the same repository path (#1) | QC-EVID-006 | tests/unit/evidence-normalize.test.js |
| pass | js-unit | evidence records name the repository, not the machine QC-EVID-006: a path outside the repository is left visible rather than mangled (#1) | QC-EVID-006 | tests/unit/evidence-normalize.test.js |
| pass | js-unit | evidence records name the repository, not the machine QC-EVID-006: a test-file path is recorded relative to the repository root (#1) | QC-EVID-006 | tests/unit/evidence-normalize.test.js |
| pass | js-unit | evidence records name the repository, not the machine QC-EVID-006: an already-relative path, an empty path, or no root is left alone (#1) | QC-EVID-006 | tests/unit/evidence-normalize.test.js |
| pass | js-unit | evidence records name the repository, not the machine QC-EVID-006: buildEvidenceSets relativises before routing, so routing is unchanged (#1) | QC-EVID-006 | tests/unit/evidence-normalize.test.js |
| pass | js-unit | evidence set assembly QC-EVID-001: a module with no records at all gets no evidence set (#1) | QC-EVID-001 | tests/unit/evidence-normalize.test.js |
| pass | js-unit | evidence set assembly QC-EVID-001: records are sorted by suite then title, and provenance is quarantined (#1) | QC-EVID-001 | tests/unit/evidence-normalize.test.js |
| pass | js-unit | evidence set assembly QC-EVID-005: an unapproved block is recorded as pending, distinguishable from a failure (#1) | QC-EVID-005 | tests/unit/evidence-normalize.test.js |
| pass | js-unit | evidence set assembly QC-ROUTE-003: shared scaffold records are duplicated into every module set (#1) | QC-ROUTE-003 | tests/unit/evidence-normalize.test.js |
| pass | js-unit | evidence set assembly QC-ROUTE-006: a registry-owned suite routes to its component whatever the file path (#1) | QC-ROUTE-006 | tests/unit/evidence-normalize.test.js |
| pass | js-unit | evidence summary and run provenance QC-EVID-001: run provenance is null locally and built from the Actions env in CI (#1) | QC-EVID-001 | tests/unit/evidence-normalize.test.js |
| pass | js-unit | evidence summary and run provenance QC-EVID-001: the summary counts records by suite and collects requirement IDs (#1) | QC-EVID-001 | tests/unit/evidence-normalize.test.js |
| pass | js-unit | external resource validation QC-SITE-003: a protocol-relative resource is treated as external (#1) | QC-SITE-003 | tests/unit/site-validate.test.js |
| pass | js-unit | external resource validation QC-SITE-003: an external script, stylesheet, image or CSS import each fail the build (#1) | QC-SITE-003 | tests/unit/site-validate.test.js |
| pass | js-unit | external resource validation QC-SITE-003: outbound anchor links are navigation and do not fail the build (#1) | QC-SITE-003 | tests/unit/site-validate.test.js |
| pass | js-unit | internal link validation QC-SITE-002: a broken internal href is reported with its file and target (#1) | QC-SITE-002 | tests/unit/site-validate.test.js |
| pass | js-unit | internal link validation QC-SITE-002: a query string or fragment on an internal link is stripped before resolving (#1) | QC-SITE-002 | tests/unit/site-validate.test.js |
| pass | js-unit | internal link validation QC-SITE-002: a site whose internal links all resolve passes validation (#1) | QC-SITE-002 | tests/unit/site-validate.test.js |
| pass | js-unit | internal link validation QC-SITE-002: external, fragment, mailto and data targets are not internal links (#1) | QC-SITE-002 | tests/unit/site-validate.test.js |
| pass | js-unit | iterations QC-SITE-006: a display with no iterations renders a documented empty state (#1) | QC-SITE-006 | tests/unit/site-render.test.js |
| pass | js-unit | iterations TRC-ITER-001: manifests alone reconstruct the timeline when no ledger exists (#1) | TRC-ITER-001 | tests/unit/site-render.test.js |
| pass | js-unit | iterations TRC-ITER-001: the timeline merges the ledger with the output manifests (#1) | TRC-ITER-001 | tests/unit/site-render.test.js |
| pass | js-unit | iterations TRC-ITER-002: current.json names the live iteration (#1) | TRC-ITER-002 | tests/unit/site-render.test.js |
| pass | js-unit | iterations TRC-ITER-002: with no pointer, or a pointer to a missing version, the highest wins (#1) | TRC-ITER-002 | tests/unit/site-render.test.js |
| pass | js-unit | iterations TRC-ITER-003: a ledger entry with no output directory is rendered and flagged (#1) | TRC-ITER-003 | tests/unit/site-render.test.js |
| pass | js-unit | module routing QC-ROUTE-001: a flat tests/unit/<module>-<topic>.test.js routes to that module (#1) | QC-ROUTE-001 | tests/unit/evidence-normalize.test.js |
| pass | js-unit | module routing QC-ROUTE-001: a JS test under tests/unit/<module>/ routes to that module (#1) | QC-ROUTE-001 | tests/unit/evidence-normalize.test.js |
| pass | js-unit | module routing QC-ROUTE-002: an R test file routes by longest-prefix match on the registry (#1) | QC-ROUTE-002 | tests/unit/evidence-normalize.test.js |
| pass | js-unit | module routing QC-ROUTE-003: an unroutable test file is shared scaffold (#1) | QC-ROUTE-003 | tests/unit/evidence-normalize.test.js |
| pass | js-unit | module routing QC-ROUTE-004: the module universe is the site registry, not code (#1) | QC-ROUTE-004 | tests/unit/evidence-normalize.test.js |
| pass | js-unit | module routing QC-ROUTE-005: a component may declare the topic-named test stems it owns (#1) | QC-ROUTE-005 | tests/unit/evidence-normalize.test.js |
| pass | js-unit | module routing QC-ROUTE-005: a slug match always beats a declared prefix (#1) | QC-ROUTE-005 | tests/unit/evidence-normalize.test.js |
| pass | js-unit | module routing QC-ROUTE-007: a prefix-claimed record lands only in its owners, not in every set (#1) | QC-ROUTE-007 | tests/unit/evidence-normalize.test.js |
| pass | js-unit | module routing QC-ROUTE-007: requirement-ID prefixes claim a record no test file could route (#1) | QC-ROUTE-007 | tests/unit/evidence-normalize.test.js |
| pass | js-unit | page rendering QC-SITE-005: an evidence page joins reviewed rows to the tests that evidence them (#1) | QC-SITE-005 | tests/unit/site-render.test.js |
| pass | js-unit | page rendering QC-SITE-005: the display page renders all four tabs (#1) | QC-SITE-005 | tests/unit/site-render.test.js |
| pass | js-unit | page rendering QC-SITE-005: the gallery card shows the iteration and ARD row count (#1) | QC-SITE-005 | tests/unit/site-render.test.js |
| pass | js-unit | page rendering QC-SITE-005: the quality index rolls up requirements, tests and coverage (#1) | QC-SITE-005 | tests/unit/site-render.test.js |
| pass | js-unit | page rendering QC-SITE-005: the text library shows tier, approval state and binding resolution (#1) | QC-SITE-005 | tests/unit/site-render.test.js |
| pass | js-unit | page rendering QC-SITE-006: an evidence page with neither matrix nor evidence degrades to a stated gap (#1) | QC-SITE-006 | tests/unit/site-render.test.js |
| pass | js-unit | page rendering QC-SITE-006: the display page for an ungenerated display is all empty states (#1) | QC-SITE-006 | tests/unit/site-render.test.js |
| pass | js-unit | page rendering QC-SITE-006: the home page renders from an empty repository without throwing (#1) | QC-SITE-006 | tests/unit/site-render.test.js |
| pass | js-unit | pane crossings QC-DEMO-003: a crossing carries the text block named in the fragment (#1) | QC-DEMO-003 | tests/unit/site-demo.test.js |
| pass | js-unit | pane crossings QC-DEMO-003: a display permalink resolves to the Displays view with that display selected (#1) | QC-DEMO-003 | tests/unit/site-demo.test.js |
| pass | js-unit | pane crossings QC-DEMO-003: each standalone permalink resolves to the view that replaced it (#1) | QC-DEMO-003 | tests/unit/site-demo.test.js |
| pass | js-unit | pane crossings QC-DEMO-003: the rule holds at any authored depth, because panes are written for their own (#1) | QC-DEMO-003 | tests/unit/site-demo.test.js |
| pass | js-unit | pane crossings QC-DEMO-004: a bare fragment stays in-pane scrolling and is never intercepted (#1) | QC-DEMO-004 | tests/unit/site-demo.test.js |
| pass | js-unit | pane crossings QC-DEMO-004: links that are not pane crossings are left to navigate (#1) | QC-DEMO-004 | tests/unit/site-demo.test.js |
| pass | js-unit | pane crossings QC-DEMO-005: a crossing that names no display keeps the one already selected (#1) | QC-DEMO-005 | tests/unit/site-demo.test.js |
| pass | js-unit | pane crossings QC-DEMO-005: applying nothing changes nothing (#1) | QC-DEMO-005 | tests/unit/site-demo.test.js |
| pass | js-unit | pane crossings QC-DEMO-006: a stale display slug degrades to the first available rather than a blank pane (#1) | QC-DEMO-006 | tests/unit/site-demo.test.js |
| pass | js-unit | requirement drift guard QC-DRIFT-001: added, removed and changed requirement text are all reported (#1) | QC-DRIFT-001 | tests/unit/requirements-matrix.test.js |
| pass | js-unit | requirement drift guard QC-DRIFT-001: an identical extract is not stale (#1) | QC-DRIFT-001 | tests/unit/requirements-matrix.test.js |
| pass | js-unit | requirement IDs referenced by tests QC-NAME-002: requirement IDs are read from test titles only, not comments or strings (#1) | QC-NAME-002 | tests/unit/requirements-matrix.test.js |
| pass | js-unit | requirement matrix extraction QC-MATRIX-001: only rows whose ID cell is exactly a requirement ID are extracted (#1) | QC-MATRIX-001 | tests/unit/requirements-matrix.test.js |
| pass | js-unit | requirement matrix extraction QC-MATRIX-002: a header row without an ID and Requirement pair is not adopted (#1) | QC-MATRIX-002 | tests/unit/requirements-matrix.test.js |
| pass | js-unit | requirement matrix extraction QC-MATRIX-002: table columns are located by header name, not by position (#1) | QC-MATRIX-002 | tests/unit/requirements-matrix.test.js |
| pass | js-unit | requirement matrix extraction QC-MATRIX-003: requirement text containing an escaped pipe survives intact (#1) | QC-MATRIX-003 | tests/unit/requirements-matrix.test.js |
| pass | js-unit | requirement matrix extraction QC-MATRIX-004: other tables and prose mentioning an ID contribute nothing (#1) | QC-MATRIX-004 | tests/unit/requirements-matrix.test.js |
| pass | js-unit | requirement matrix extraction QC-MATRIX-005: an empty or malformed document extracts to nothing rather than throwing (#1) | QC-MATRIX-005 | tests/unit/requirements-matrix.test.js |
| pass | js-unit | requirement matrix extraction QC-MATRIX-005: the extract is deterministic and carries no timestamp (#1) | QC-MATRIX-005 | tests/unit/requirements-matrix.test.js |
| pass | js-unit | suite normalization QC-EVID-001: missing or empty reporter output normalizes to no records (#1) | QC-EVID-001 | tests/unit/evidence-normalize.test.js |
| pass | js-unit | suite normalization QC-EVID-001: vitest output normalizes into contracts §8 records (#1) | QC-EVID-001 | tests/unit/evidence-normalize.test.js |
| pass | js-unit | suite normalization QC-EVID-002: testthat results normalize into the same shape with suite r-unit (#1) | QC-EVID-002 | tests/unit/evidence-normalize.test.js |
| pass | js-unit | suite normalization QC-EVID-003: any testthat status other than pass records as not passed (#1) | QC-EVID-003 | tests/unit/evidence-normalize.test.js |
| pass | js-unit | suite normalization QC-EVID-004: an approved text block becomes a passing text-review record (#1) | QC-EVID-004 | tests/unit/evidence-normalize.test.js |
| pass | js-unit | suite normalization QC-EVID-004: an unapproved generated block records as not passed (#1) | QC-EVID-004 | tests/unit/evidence-normalize.test.js |
| pass | js-unit | test naming convention QC-NAME-001: every JS test title carries requirement IDs and an issue reference (#1) | QC-NAME-001 | tests/unit/site-convention.test.js |
| pass | js-unit | test naming convention QC-NAME-001: the guard actually sees the suite it is meant to police (#1) | QC-NAME-001 | tests/unit/site-convention.test.js |
| pass | js-unit | test-name parsing QC-NAME-002: a scaffold title with no requirement ID still parses its issue ref (#1) | QC-NAME-002 | tests/unit/evidence-normalize.test.js |
| pass | js-unit | test-name parsing QC-NAME-002: several requirement IDs and several issue refs parse out of one title (#1) | QC-NAME-002 | tests/unit/evidence-normalize.test.js |
| pass | js-unit | the app page QC-DEMO-007: every pane is server-rendered and present, with exactly one visible (#1) | QC-DEMO-007 | tests/unit/site-demo.test.js |
| pass | js-unit | the app page QC-DEMO-007: panes do not collide with the shell tab controller (#1) | QC-DEMO-007 | tests/unit/site-demo.test.js |
| pass | js-unit | the app page QC-DEMO-007: the page carries no title or lede — content starts at the pane (#1) | QC-DEMO-007 | tests/unit/site-demo.test.js |
| pass | js-unit | the app page QC-DEMO-008: a tab with no rendered pane is dropped rather than rendered empty (#1) | QC-DEMO-008 | tests/unit/site-demo.test.js |
| pass | js-unit | the application strip QC-DEMO-016: a view in the bar is a real link, marked as navigation not as a control (#1) | QC-DEMO-016 | tests/unit/site-demo.test.js |
| pass | js-unit | the application strip QC-DEMO-016: the bar carries only what is not scoped to a study (#1) | QC-DEMO-016 | tests/unit/site-demo.test.js |
| pass | js-unit | the application strip QC-DEMO-017: a display with no iteration yet contributes nulls, not a broken readout (#1) | QC-DEMO-017 | tests/unit/site-demo.test.js |
| pass | js-unit | the application strip QC-DEMO-017: the bar carries the study, and a context index for the live readout (#1) | QC-DEMO-017 | tests/unit/site-demo.test.js |
| pass | js-unit | the application strip QC-DEMO-017: the embedded context index cannot close the script element (#1) | QC-DEMO-017 | tests/unit/site-demo.test.js |
| pass | js-unit | the ARD tab QC-SITE-005: the ARD renders one row per statistic with its condition columns (#1) | QC-SITE-005 | tests/unit/site-render.test.js |
| pass | js-unit | the ARD tab QC-SITE-006: an absent ARD renders the empty state rather than an empty table (#1) | QC-SITE-006 | tests/unit/site-render.test.js |
| pass | js-unit | the CSR reader QC-SITE-006: with no assembled CSR the reader states the gap and still offers the trace index (#1) | QC-SITE-006 | tests/unit/site-render.test.js |
| pass | js-unit | the CSR reader TRC-CHAIN-001: the reader renders bound numbers and embeds the trace index (#1) | TRC-CHAIN-001 | tests/unit/site-render.test.js |
| pass | js-unit | the CSR reader TRC-DOC-001: an absent or unusable assembly normalizes to null instead of throwing (#1) | TRC-DOC-001 | tests/unit/site-render.test.js |
| pass | js-unit | the CSR reader TRC-DOC-001: the assembled document normalizes into sections and nested sections (#1) | TRC-DOC-001 | tests/unit/site-render.test.js |
| pass | js-unit | the display registry QC-SITE-005: status is derived from the filesystem, not from the declared value (#1) | QC-SITE-005 | tests/unit/site-render.test.js |
| pass | js-unit | the display registry QC-SITE-006: a display with no outputs loads to empty structures rather than throwing (#1) | QC-SITE-006 | tests/unit/site-render.test.js |
| pass | js-unit | the display registry QC-SITE-007: a display on disk but absent from the registry is surfaced, not dropped (#1) | QC-SITE-007 | tests/unit/site-render.test.js |
| pass | js-unit | the navigation tree QC-DEMO-018: more than one document is listed, and an unbuilt one says so (#1) | QC-DEMO-018 | tests/unit/site-demo.test.js |
| pass | js-unit | the navigation tree QC-DEMO-018: the study is the root, and documents, displays, text and values hang off it (#1) | QC-DEMO-018 | tests/unit/site-demo.test.js |
| pass | js-unit | the navigation tree QC-DEMO-019: a display records the documents that use it rather than living inside one (#1) | QC-DEMO-019 | tests/unit/site-demo.test.js |
| pass | js-unit | the navigation tree QC-DEMO-019: a text block that is not on disk is left out, and a draft is flagged (#1) | QC-DEMO-019 | tests/unit/site-demo.test.js |
| pass | js-unit | the navigation tree QC-DEMO-020: only the active group is open, and the selected item is marked (#1) | QC-DEMO-020 | tests/unit/site-demo.test.js |
| pass | js-unit | the navigation tree QC-DEMO-020: the explorer renders the study, every group, and a count per group (#1) | QC-DEMO-020 | tests/unit/site-demo.test.js |
| pass | js-unit | the navigation tree QC-DEMO-021: an unbuilt document is not a link, so it cannot be selected (#1) | QC-DEMO-021 | tests/unit/site-demo.test.js |
| pass | js-unit | the navigation tree QC-DEMO-021: every selectable item is a real link carrying its own deep link (#1) | QC-DEMO-021 | tests/unit/site-demo.test.js |
| pass | js-unit | the navigation tree QC-DEMO-022: an empty registry renders the explorer without throwing (#1) | QC-DEMO-022 | tests/unit/site-demo.test.js |
| pass | js-unit | the navigation tree QC-DEMO-022: Read is the current mode and Edit is genuinely disabled (#1) | QC-DEMO-022 | tests/unit/site-demo.test.js |
| pass | js-unit | the shared selection QC-DEMO-001: a selection round-trips through the URL hash (#1) | QC-DEMO-001 | tests/unit/site-demo.test.js |
| pass | js-unit | the shared selection QC-DEMO-001: empty parts are omitted from the hash so the common case stays short (#1) | QC-DEMO-001 | tests/unit/site-demo.test.js |
| pass | js-unit | the shared selection QC-DEMO-002: an unknown or absent tab decodes to the default rather than an empty app (#1) | QC-DEMO-002 | tests/unit/site-demo.test.js |
| pass | js-unit | the shared selection QC-DEMO-002: the tabs the requirements name are the tabs the app knows (#1) | QC-DEMO-002 | tests/unit/site-demo.test.js |
| pass | js-unit | the shared shell QC-SITE-001: every shell token is substituted and none leaks into the output (#1) | QC-SITE-001 | tests/unit/site-render.test.js |
| pass | js-unit | the shared shell QC-SITE-001: navigation links are relative to the page root so any mount depth works (#1) | QC-SITE-001 | tests/unit/site-render.test.js |
| pass | js-unit | the stylesheet parses QC-SITE-008: declarations live inside a block, never between two of them (#16) | QC-SITE-008 | tests/unit/site-css.test.js |
| pass | js-unit | the stylesheet parses QC-SITE-008: every block in site.css is closed, so no rule is silently dropped (#16) | QC-SITE-008 | tests/unit/site-css.test.js |
| pass | js-unit | the stylesheet parses QC-SITE-008: the last rule in the file is as reachable as the first (#16) | QC-SITE-008 | tests/unit/site-css.test.js |
| pass | js-unit | the Tables pane QC-DEMO-009: an unknown selection falls back to the first display (#1) | QC-DEMO-009 | tests/unit/site-demo.test.js |
| pass | js-unit | the Tables pane QC-DEMO-009: one panel per display, exactly one shown, and every display in the picker (#1) | QC-DEMO-009 | tests/unit/site-demo.test.js |
| pass | js-unit | the Tables pane QC-DEMO-009: the pane opens on the selected display when one is asked for (#1) | QC-DEMO-009 | tests/unit/site-demo.test.js |
| pass | js-unit | the Tables pane QC-DEMO-010: an empty library renders a documented empty state, not a broken pane (#1) | QC-DEMO-010 | tests/unit/site-demo.test.js |
| pass | js-unit | the Templates pane QC-DEMO-011: the whole E3 skeleton is rendered, not only the sections this report fills (#1) | QC-DEMO-011 | tests/unit/site-demo.test.js |
| pass | js-unit | the Templates pane QC-DEMO-012: display numbers are derived from assembly order, never authored (#1) | QC-DEMO-012 | tests/unit/site-demo.test.js |
| pass | js-unit | the Templates pane QC-DEMO-012: reordering the assembly moves every number and no slug (#1) | QC-DEMO-012 | tests/unit/site-demo.test.js |
| pass | js-unit | the Templates pane QC-DEMO-013: a missing section model renders its documented empty state (#1) | QC-DEMO-013 | tests/unit/site-demo.test.js |
| pass | js-unit | the Templates pane QC-DEMO-013: the pane renders before the report has ever been assembled (#1) | QC-DEMO-013 | tests/unit/site-demo.test.js |
| pass | js-unit | the Templates pane QC-DEMO-014: the generated provenance section is named as generated (#1) | QC-DEMO-014 | tests/unit/site-demo.test.js |
| pass | js-unit | the trace index TRC-ARD-004: the ARD hash is computed from the committed file when needed (#1) | TRC-ARD-004 | tests/unit/site-render.test.js |
| pass | js-unit | the trace index TRC-CHAIN-001: each entry carries datasets, specs, ARD, hashes, iteration and commit (#1) | TRC-CHAIN-001 | tests/unit/site-render.test.js |
| pass | js-unit | the trace index TRC-CHAIN-002: every entry links to its gallery page and its evidence page (#1) | TRC-CHAIN-002 | tests/unit/site-render.test.js |
| pass | js-unit | the Values pane QC-DEMO-027: every value shows its name, its number and where it came from (#1) | QC-DEMO-027 | tests/unit/site-demo.test.js |
| pass | js-unit | the Values pane QC-DEMO-027: the blocks that cite a value are listed against it (#1) | QC-DEMO-027 | tests/unit/site-demo.test.js |
| pass | js-unit | the Values pane QC-DEMO-028: a repository with no values store renders the documented empty state (#1) | QC-DEMO-028 | tests/unit/site-demo.test.js |
| pass | js-unit | the Values pane QC-DEMO-028: the pane states the verdict of the gate that re-derived the store (#1) | QC-DEMO-028 | tests/unit/site-demo.test.js |
| pass | js-unit | the Values pane QC-DEMO-029: values are a collection of the study, listed in the tree with their numbers (#1) | QC-DEMO-029 | tests/unit/site-demo.test.js |
| pass | js-unit | unresolved requirement IDs — the safety.viz blind spot QC-UNRES-001: an ID referenced by a test but defined in no matrix is reported (#1) | QC-UNRES-001 | tests/unit/requirements-matrix.test.js |
| pass | js-unit | unresolved requirement IDs — the safety.viz blind spot QC-UNRES-001: nothing referenced and nothing defined produces an empty, non-throwing report (#1) | QC-UNRES-001 | tests/unit/requirements-matrix.test.js |
| pass | js-unit | unresolved requirement IDs — the safety.viz blind spot QC-UNRES-002: reviewed requirements no test references are reported as uncovered (#1) | QC-UNRES-002 | tests/unit/requirements-matrix.test.js |
| pass | js-unit | unresolved requirement IDs — the safety.viz blind spot QC-UNRES-003: an ID defined in a sibling matrix resolves rather than raising an alarm (#1) | QC-UNRES-003 | tests/unit/requirements-matrix.test.js |
| pass | r-unit | DSP-ALL-001: every display renders a table that actually contains numbers (#1) | DSP-ALL-001 | test-displays.R |
| pass | r-unit | DSP-ALL-002: every display declares a regulatory identifier and a source line (#1) | DSP-ALL-002 | test-displays.R |
| pass | r-unit | TFL-QC-001: every test name carries requirement IDs and the tracking issue (#1) | TFL-QC-001 | test-naming-convention.R |
| pass | r-unit | TFL-QC-002: every requirement ID a test cites exists in a requirement matrix (#1) | TFL-QC-002 | test-naming-convention.R |
| pass | r-unit | TFL-QC-003: every requirement in a matrix is cited by at least one test (#1) | TFL-QC-003 | test-naming-convention.R |
| pass | r-unit | TFL-QC-004: requirement matrices use the agreed column contract (#1) | TFL-QC-004 | test-naming-convention.R |
Traceability
No generated output yet, so the data → ARD → display chain is empty.
Provenance
- Generated
- 2026-07-27T04:44:02.378Z
- Environment
- os Darwin 23.6.0 · node v24.14.0 · vitest 2.1.9 · r 4.3.3
- CI run
- Not recorded for this evidence set