# Cargo Test

> Cargo Test

- Skill: `rootwarp/cargo-test` (Agent Skill)
- Install (CLI): `npx skillmds@latest add rootwarp/cargo-test`
- Raw SKILL.md: https://api.skillmd.com/api/skills/rootwarp/cargo-test/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Coding & Dev Tools
- Author: rootwarp (https://skillmd.com/u/rootwarp)
- Updated: 2026-09-17
- Page: https://skillmd.com/skills/rootwarp/cargo-test

---

# /cargo-test

Run tests for the Rust project.

## Instructions

Run tests with output:

```bash
cargo test
```

For verbose output showing test names:

```bash
cargo test -- --nocapture
```

To run a specific test:

```bash
cargo test <test_name>
```

If tests fail, analyze the failures and suggest fixes.

