Agent skill
testing
Use when running tests to validate implementations, collecting test evidence, or debugging failures. Load in TEST state. Covers unit tests (pytest/jest), API tests (curl), browser tests (Claude-in-Chrome), database verification. All results are code-verified, not LLM-judged.
Stars
7
Forks
0
Install this agent skill to your Project
npx add-skill https://github.com/ingpoc/SKILLS/tree/main/testing
SKILL.md
Testing
Comprehensive testing for TEST state.
Instructions
- Run unit tests:
scripts/run-unit-tests.sh - Run API tests:
scripts/run-api-tests.sh - Run browser tests (if UI): via Claude-in-Chrome MCP
- Verify database (if data):
scripts/verify-database.sh - Collect evidence:
scripts/collect-evidence.sh - Report results (code verified, not judged)
Exit Criteria (Code Verified)
bash
# All must return exit code 0
scripts/run-unit-tests.sh
scripts/run-api-tests.sh
[ -f "/tmp/test-evidence/results.json" ]
jq '.all_passed == true' /tmp/test-evidence/results.json
References
| File | Load When |
|---|---|
| references/unit-testing.md | Writing/running unit tests |
| references/api-testing.md | Testing API endpoints |
| references/browser-testing.md | UI testing with Chrome |
| references/database-testing.md | Database verification |
Didn't find tool you were looking for?