testing
Installation
SKILL.md
Testing
Use this skill when writing or modifying tests in this repository.
Rust crate tests
Unit tests live alongside code in #[cfg(test)] modules. Integration tests go in each crate's tests/ directory.
cargo test -p microsoft-webui-handler # one crate
cargo test --workspace # all crates
cargo xtask test # via xtask (part of quality gate)
Every code change ships with tests: