con un clic
test
Run tests and analyze results, fix failing tests
Instalar con Codex o Claude Copia este prompt, pégalo en Codex, Claude u otro asistente, y deja que revise la página de la skill y la instale por ti.
Menú
Run tests and analyze results, fix failing tests
Instalar con Codex o Claude Copia este prompt, pégalo en Codex, Claude u otro asistente, y deja que revise la página de la skill y la instale por ti.
Basado en la clasificación ocupacional SOC
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