
Test Execution
- 1 installs
- 2 repo stars
- Updated March 18, 2026
- masanao-ohba/claude-manifests
Provides a progressive test-execution strategy (unit, integration, system, e2e), environment verification checklists, Docker test patterns, and result summaries.
About
A technology-agnostic skill for test execution strategy, environment management, and result reporting with next-step recommendations. A developer uses it when running tests and reporting results in feedback-speed order.
- Progressive execution from unit through e2e
- Environment verification checklists and Docker test patterns
Test Execution by the numbers
- 1 all-time installs (skills.sh)
- Ranked #1,750 of 2,153 Testing & QA skills by installs in the Skillselion catalog
- Data as of Aug 2, 2026 (Skillselion catalog sync)
npx skills add https://github.com/masanao-ohba/claude-manifests --skill test-executionAdd your badge
Show developers this skill is listed on Skillselion. Paste this into your README.
| Installs | 1 |
|---|---|
| repo stars | ★ 2 |
| Last updated | March 18, 2026 |
| Repository | masanao-ohba/claude-manifests ↗ |
What it does
Provides a progressive test-execution strategy (unit, integration, system, e2e), environment verification checklists, Docker test patterns, and result summaries.
Files
Test Execution
A technology-agnostic skill for test execution strategy, environment management, and result reporting.
Execution Strategy
strategy: progressive_execution
description: "Run tests in order of feedback speed"
phases:
1_unit_tests:
description: "Fast, isolated tests"
run_first: true
fail_fast: true
typical_duration: "seconds"
2_integration_tests:
description: "Component interaction tests"
run_if: "Unit tests pass"
fail_fast: false
typical_duration: "seconds to minutes"
3_system_tests:
description: "Full system tests"
run_if: "Integration tests pass"
fail_fast: false
typical_duration: "minutes"
4_e2e_tests:
description: "End-to-end user flows"
run_if: "System tests pass"
fail_fast: false
typical_duration: "minutes to hours"Test Selection
selection_patterns:
changed_files:
description: "Run tests affected by changes"
approach:
- "Identify modified files"
- "Find tests that import/use those files"
- "Run only affected tests"
smoke_tests:
description: "Critical path verification"
use_when: "Quick validation needed"
coverage: "Core functionality only"
full_suite:
description: "All tests"
use_when:
- "Pre-merge validation"
- "Release preparation"
- "Periodic verification"Environment Management
Environment Verification
environment_checks:
pre_execution:
- "Test database accessible?"
- "Required services running?"
- "Environment variables set?"
- "Test fixtures available?"
isolation:
- "Tests don't share state?"
- "Database reset between tests?"
- "No external side effects?"
cleanup:
- "Test data removed after run?"
- "Temporary files deleted?"
- "Mock servers stopped?"Docker Test Environment
docker_patterns:
compose_test:
description: "Use docker-compose for test environment"
structure:
- "docker-compose.test.yml"
- "Test-specific configuration"
- "Isolated network"
commands:
full_run: "docker compose -f docker-compose.test.yml up --abort-on-container-exit"
specific: "TEST_ONLY=<path> docker compose -f docker-compose.test.yml up"
cleanup: "docker compose -f docker-compose.test.yml down -v"Result Summary Format
result_summary:
overview:
total: <number>
passed: <number>
failed: <number>
errors: <number>
skipped: <number>
duration: <seconds>
failure_details:
- test: "<test name>"
type: "ERROR|FAILURE"
message: "<error message>"
location: "<file:line>"
next_steps:
- action: "<what to do>"
reason: "<why>"
priority: "high|medium|low"Reporting
Report Structure
report_structure:
summary:
- "Pass/fail ratio"
- "Duration"
- "Coverage (if available)"
failures:
- "Grouped by category"
- "Ordered by priority"
- "With actionable context"
next_steps:
- "Specific actions to take"
- "Which agent should handle"
- "Estimated complexity"Used By Agents
primary_users:
- test-executor: "Test execution and result reporting"