/test

Run tests locally and analyze the summary report.

Syntax

/test

How It Works

Uses tester subagent to:

  1. Run the test suite
  2. Analyze results
  3. 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%
CommandUse Case
/fix:testFix failing tests
/cookImplement with auto-testing
/codeImplement plan with testing

Key Takeaway: Use /test to run the test suite and get a summary report without implementing fixes.