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:

Installs
1
Repository
microsoft/webui
GitHub Stars
92
First Seen
Sep 3, 2026
testing — microsoft/webui