← Back to list

run-comprehensive-tests
by BerryKuipers
Universal Claude Code configuration: agents, skills, workflows, and SessionStart hooks for consistent development across projects
⭐ 5🍴 2📅 Jan 24, 2026
SKILL.md
name: run-comprehensive-tests description: Execute comprehensive test suite (Vitest/Jest) with coverage reporting and failure analysis. Returns structured output with test counts (total/passed/failed), coverage percentage, duration, and detailed failure information. Used for quality gates and CI/CD validation.
Run Comprehensive Tests
Executes the complete test suite with coverage tracking and provides structured results for workflow decisions.
Usage
This skill runs npm run test (or equivalent) and parses the output for test results and coverage metrics.
Output Format
All Tests Passing
{
"status": "pass",
"summary": {
"total": 45,
"passed": 45,
"failed": 0,
"coverage": 87.5,
"duration": "12.3s"
},
"failures": [],
"canProceed": true
}
Tests Failing
{
"status": "fail",
"summary": {
"total": 45,
"passed": 42,
"failed": 3,
"coverage": 85.2,
"duration": "11.8s"
},
"failures": [
{
"file": "src/components/CharacterCard.test.tsx",
"test": "should render character portrait",
"error": "Expected element to exist",
"line": 42
}
],
"canProceed": false,
"details": "3 test(s) failed"
}
When to Use
- Quality Assurance phase (Conductor Phase 3)
- Before creating pull requests
- After implementing features or bug fixes
- As part of quality-gate workflow
- CI/CD pipeline validation
Test Framework Support
- Vitest (primary)
- Jest (fallback)
- Coverage reporting via c8 or Istanbul
Requirements
- Test framework installed (npm packages)
- Test scripts configured in package.json
- Typical script:
"test": "vitest run --coverage"
Score
Total Score
60/100
Based on repository quality metrics
✓SKILL.md
SKILL.mdファイルが含まれている
+20
○LICENSE
ライセンスが設定されている
0/10
✓説明文
100文字以上の説明がある
+10
○人気
GitHub Stars 100以上
0/15
○最近の活動
3ヶ月以内に更新がある
0/10
○フォーク
10回以上フォークされている
0/5
✓Issue管理
オープンIssueが50未満
+5
✓言語
プログラミング言語が設定されている
+5
○タグ
1つ以上のタグが設定されている
0/5
Reviews
💬
Reviews coming soon