docs(test): document verification tiers

Document fast, focused browser, and full authority verification tiers plus the full local timeout/shard expectation.

req: test/015

req: test/016

req: test/004

req: test/006
This commit is contained in:
slhx agent
2026-06-25 18:41:26 +02:00
parent 1a67d0c5a4
commit 57a975bbdc
3 changed files with 22 additions and 2 deletions
+15 -1
View File
@@ -183,10 +183,24 @@ See `docs/versioning.md`.
## Local checks
```sh
# Fast compile/regression pass for the crate you touched.
cargo test -p <crate>
# Focused real-browser smoke for the HTML pattern gallery.
cargo run -p hemx-xtask -- html-examples-smoke
# Full local authority check; keep this green before shipping broad slices.
cargo run -p hemx-xtask -- test
cargo check --workspace
redgate health --strict
```
Use `cargo run -p hemx-xtask -- test` for the full local verification path so
jobs stay capped for local CPU and memory. req: test/004
jobs stay capped for local CPU and memory. The focused browser tier is
`cargo run -p hemx-xtask -- html-examples-smoke`; it owns dynamic html_examples
browser behavior and should complete in about 30 seconds locally. The full tier
should complete within a 10 minute local timeout; if it grows beyond that, split
it into deterministic repo-owned shards that together cover the same behavior,
with `cargo run -p hemx-xtask -- test` remaining the full authority wrapper.
req: test/004 req: test/006 req: test/015 req: test/016