Run Tests
Run project test suite.
Commands
| Command | Description |
|---|---|
npm run typecheck | Type checking (run first) |
npm run test:unit | Unit tests (fast) |
npm run test:integration | Integration tests |
npm run test:all | All tests |
npm run test:coverage | With coverage |
Steps
- •Run
npm run typecheckfirst - •Run appropriate test command
- •If failures, analyze and suggest fixes
- •Report: passed/failed/skipped counts
On Failure
- •List each failing test with error
- •Identify root cause
- •Suggest specific fixes
- •Do NOT auto-fix without approval