원클릭으로
test-automation
Create and execute automated test suites with comprehensive coverage for unit, integration, and E2E testing
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Create and execute automated test suites with comprehensive coverage for unit, integration, and E2E testing
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Design RESTful APIs with proper resource modeling, error handling, pagination, and documentation
Design system architecture, data models, API contracts, and create Architecture Decision Records (ADRs)
Implement backend functionality including APIs, business logic, database operations, and integrations
Comprehensive code review checking for security, performance, maintainability, and best practices
Prepare deployment configuration, environment setup, health checks, and rollback procedures
Implement frontend user interfaces with modern frameworks, responsive design, and accessibility standards
| name | test-automation |
| description | Create and execute automated test suites with comprehensive coverage for unit, integration, and E2E testing |
| allowed-tools | Read, Write, Edit, Bash, Glob, Grep |
Create comprehensive automated tests ensuring code quality and reliability.
describe('Feature', () => {
it('should do expected behavior', () => {
// Arrange - Set up test data
const input = { ... };
// Act - Execute the code
const result = functionUnderTest(input);
// Assert - Verify outcome
expect(result).toEqual(expected);
});
});
| Type | Minimum | Target |
|---|---|---|
| Statements | 70% | 85% |
| Branches | 65% | 80% |
| Functions | 75% | 90% |
| Lines | 70% | 85% |
# Run all tests
npm test
# Run with coverage
npm test -- --coverage
# Run specific test file
npm test -- path/to/test.spec.js
# Run in watch mode
npm test -- --watch
# Generate coverage report
npm test -- --coverage --coverageReporters=html
# Test Results
**Total**: X tests
**Passed**: Y
**Failed**: Z
**Coverage**: X%
## Failed Tests
1. [Test name] - [Reason]
## Coverage Gaps
- [File]: [Lines not covered]
## Recommendations
- [Suggested additional tests]