Maintenance in progress: we are indexing a large batch of new skills. Some pages may load slowly or briefly show no results. Nothing is lost, and everything is back to normal within the hour.

Nextest Targeted Testing

Use this to run the Rust suite quickly with `cargo nextest`, starting targeted and widening to full CI parity.

majiayu000 f6bee08 2 files · 1.4 KB Updated 567 repo stars

File contents

Fast loop

  • Rust-only (CI-like profile): npm run test:rust

Target a subset

NPM passes args through after --:

  • Filter by substring (common case):

    • npm run test:rust -- <substring>
  • If you need exact names, list tests:

    • cargo nextest list --cargo-profile ci
  • If you need test binary args (e.g., --nocapture):

    • cargo nextest run --cargo-profile ci <filter> -- --nocapture

Strategy

  • Start as narrow as possible (one failing test), then widen.
  • After fixing the immediate issue, run the full suite:
    • npm test (Rust + UI)
    • npm run smoke

Policy

  • Do NOT use cargo test in this repo.

majiayu000/claude-skill-registry-data/tree/main/data/nextest-targeted-testing commit f6bee08068

Frequently asked questions

npx skillmds add majiayu000/nextest-targeted-testing