ソース情報
- リポジトリ
- wojons/skills
- ソースの最終更新活動
- 2026年4月1日 15:16
- 検出された SKILL.md の言語
- 英語
- スター
- 4
- フォーク
- 2
インストール方法
デフォルトでは、最初にソースを確認する Prompt が選択されています。直接コマンドに切り替えるか、ローカルコピーをダウンロードすることもできます。
ソースファイルを確認
インストールを決める前に、SKILL.md と SkillsMP に表示されている付属ファイルをお読みください。
メニュー
デフォルトでは、最初にソースを確認する Prompt が選択されています。直接コマンドに切り替えるか、ローカルコピーをダウンロードすることもできます。
インストールを決める前に、SKILL.md と SkillsMP に表示されている付属ファイルをお読みください。
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
直接コマンドでは確認用 Prompt が省略されます。実行前にソースを確認してください。
npx skills add https://github.com/wojons/skills --skill testing-functional-suiteコマンドは1行のまま表示されます。コピー前に横へスクロールして全体を確認してください。
ローカルで確認しますか?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