Run tests and analyze results (no implementation)
Quick Start
/test
What happens:
- Activates tester agent
- Runs full test suite
- Analyzes pass/fail results
- Reports summary
Important: Does NOT implement fixes, only reports issues
Syntax
/test
No arguments needed.
Example Output
✓ tester: Running test suite...
Test Results:
✓ Unit tests: 89 passed, 0 failed
✓ Integration tests: 23 passed, 0 failed
✗ E2E tests: 4 passed, 2 failed
Coverage:
- Statements: 84% (target: 80%)
- Branches: 78% (target: 75%)
- Functions: 91% (target: 85%)
- Lines: 86% (target: 80%)
Failed Tests:
1. E2E: Email campaign creation flow
Error: Timeout waiting for API response
2. E2E: Analytics dashboard load
Error: Chart data not rendering
Summary: 116/118 tests passing (98.3%)
Next: /fix Test failures in email campaign + analytics
When to Use
After Implementation
"Implement feature"
/test # Verify everything works
Before Commits
/test # Ensure tests pass
/git cm # Commit if all green
Debugging
/fix feature not working
/test # Verify fix worked
Related Commands
Test first. Fix fast. Know what’s broken before you commit.