with one click
test
Run tests and analyze results, fix failing tests
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Menu
Run tests and analyze results, fix failing tests
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Based on SOC occupation classification
Create a complete feature module for Expo with screen, components, hooks, and services
Create a new Expo Router screen with proper structure
Create a well-formatted conventional commit with proper message
Review code changes for quality, security, and best practices
Create a new Next.js API route handler with validation
Create a new React component with TypeScript and tests
| name | test |
| description | Run tests and analyze results, fix failing tests |
| user-invocable | true |
| argument-hint | ["test file or pattern"] |
| allowed-tools | Bash, Read, Write, Edit, Glob |
Run tests and provide detailed analysis of results.
Detect Test Framework
package.json for test scriptsRun Tests
# Unit tests
npm run test -- $ARGUMENTS
# With coverage
npm run test -- --coverage $ARGUMENTS
# E2E tests
npm run test:e2e -- $ARGUMENTS
Analyze Results
Fix Failures (if requested)
npx vitest run # Run all tests
npx vitest run path/to/test # Run specific test
npx vitest --coverage # With coverage
npx jest # Run all tests
npx jest path/to/test # Run specific test
npx jest --coverage # With coverage
npx playwright test # Run all tests
npx playwright test file # Run specific test
npx playwright test --ui # Interactive mode
## Test Results
### Summary
- Total: X tests
- Passed: X
- Failed: X
- Coverage: X%
### Failures
[Details of any failing tests]
### Coverage Gaps
[Files below threshold]
### Recommendations
[Suggestions for improving test coverage]
Target: $ARGUMENTS