Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/wojons/skills --skill testing-smoke명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
SOC 직업 분류 기준
SKILL.md 표시 중
| name | testing-smoke |
| description | Run smoke tests to verify basic application functionality |
| license | MIT |
| compatibility | opencode |
| metadata | {"audience":"developers","category":"testing"} |
Run quick verification tests to ensure basic functionality works before committing to deeper testing (integration, e2e, regression).
Use this skill when:
Quick validation of critical functionality:
Coordinate with other test types:
Implementation approaches:
# Run smoke tests
npm run test:smoke # Full smoke test suite
npm run test:smoke:quick # Absolute minimum validation
# Deployment validation
npm run test:smoke:production # Production smoke tests
npm run test:smoke:staging # Staging environment checks
# Coordinate with other tests
npm run test:smoke && npm run test:integration
npm run test:smoke && npm run test:e2e
# Environment-specific smoke tests
npm run test:smoke:dev # Development environment
npm run test:smoke:ci # CI environment validation
Smoke Test Results:
──────────────────────────────
Execution Context: Post-deployment validation
Test Duration: 1m 23s (target < 3 minutes)
Critical Paths Verified:
✅ Application Server: Responds on port 3000
✅ Database Connection: Can query users table
✅ Authentication Service: Login endpoint works
✅ Core API: GET /api/health returns 200 OK
✅ Cache Layer: Redis connection established
Environment Checks:
✅ Environment variables loaded
✅ Configuration files valid
✅ External services reachable
✅ File permissions correct
Next Steps Recommended:
- Smoke tests passed ✅
- Proceed with integration testing
- If failed, investigate before deeper testing
Dependency Status:
- Unit tests not required for smoke (already fast)
- Integration tests can proceed if smoke passes
- E2E tests depend on smoke + integration passing
- Performance tests require stable environment