用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/wojons/skills --skill testing-functional-suite命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
基于 SOC 职业分类
正在显示 SKILL.md
| name | testing-functional-suite |
| description | Run comprehensive functional test suite |
| license | MIT |
| compatibility | opencode |
| metadata | {"audience":"developers","category":"testing"} |
Run comprehensive functional testing covering unit, integration, and system tests to validate application functionality.
Use this skill when:
Unit Testing Layer
Integration Testing Layer
System Testing Layer
# Run complete functional test suite
npm run test:functional # Custom functional suite
npm run test # Default test command
# Run in CI/CD pipeline
npm run test:ci # CI-optimized testing
npm run test:coverage # With coverage reporting
# Sequential execution
npm run test:unit && npm run test:integration && npm run test:e2e
# Parallel execution (if supported)
npm run test:all --parallel
Functional Test Suite Results:
──────────────────────────────
Test Pyramid Execution:
Unit Tests (1,234 tests):
✅ Passed: 1,230 (99.7%)
⚠️ Skipped: 2
❌ Failed: 2
📊 Coverage: 92%
Integration Tests (87 tests):
✅ Passed: 85 (97.7%)
❌ Failed: 2
- Database connection pooling
- Payment gateway timeout
System Tests (23 tests):
✅ Passed: 20 (87.0%)
❌ Failed: 3
- User registration flow
- Checkout process
- Admin dashboard
Overall: 1,344 tests, 95.2% pass rate
Critical Paths: 15/18 passed (83.3%)
Recommendation: Fix system test failures before release