test-runner
Installation
SKILL.md
Test Runner
Execute and manage Rust tests for the self-learning memory project.
Commands
# Unit tests (fast, <30s)
cargo nextest run --lib
# Integration tests
cargo nextest run --test '*'
# Full suite
cargo nextest run --all
cargo test --doc # doctests (nextest unsupported)