/test
Run tests locally and analyze the summary report.
Syntax
/test
How It Works
Uses tester subagent to:
- Run the test suite
- Analyze results
- Report summary
Important: Does not implement fixes - only reports test status.
Example Output
Test Results:
✓ 45 tests passed
✗ 3 tests failed
- auth/login.test.js: Expected 200, got 401
- api/users.test.js: Timeout error
- db/migrations.test.js: Connection refused
Coverage: 78%
Related Commands
| Command | Use Case |
|---|---|
/fix:test | Fix failing tests |
/cook | Implement with auto-testing |
/code | Implement plan with testing |
Key Takeaway: Use /test to run the test suite and get a summary report without implementing fixes.