rust-testing-strategy

Installation
SKILL.md

Rust Testing Strategy

Verification Commands

  • When modifying Rust code, run clippy to detect issues:

    cargo clippy --all-features --all-targets --workspace --no-deps
    
  • Use cargo doc --no-deps --all-features to check documentation

Test Execution

  • Use cargo-nextest for running unit and integration tests
  • Use the default test runner for documentation tests
  • For comprehensive verification, run the complete test suite
  • Database seeding can be performed using yarn commands in the project's package.json
Installs
1
Repository
hashintel/hash
GitHub Stars
1.7K
First Seen
Sep 7, 2026
rust-testing-strategy — hashintel/hash