Agent Skill
2/7/2026test
Auto-detect project type and run appropriate test suite. Use when running tests, checking test coverage, or validating code changes.
A
allanninal
0GitHub Stars
1Views
npx skills add allanninal/claude-code-skills
SKILL.md
| Name | test |
| Description | Auto-detect project type and run appropriate test suite. Use when running tests, checking test coverage, or validating code changes. |
name: test description: Auto-detect project type and run appropriate test suite. Use when running tests, checking test coverage, or validating code changes. argument-hint: [test-type] [path] allowed-tools: Bash, Read, Glob, Grep
Universal Test Runner
Run tests for any project by auto-detecting the project type and test framework.
Arguments
$0(optional): Test type -unit,integration,e2e,all(default:all)$1(optional): Specific path or pattern to test
Detection Logic
-
Check for Python project (pytest):
- Look for
pytest.ini,pyproject.tomlwith pytest config, orconftest.py - Check for
uv.lock(useuv run pytest) orrequirements.txt(usepytest)
- Look for
-
Check for JavaScript/TypeScript project:
- Look for
package.jsonwith test scripts - Detect test runner: Jest, Vitest, Playwright, Cypress
- Look for
Execution Steps
For Python Projects (FastAPI, automation suites)
# Check if uv is used
if [ -f "uv.lock" ]; then
uv run pytest $PATH -v --tb=short
else
pytest $PATH -v --tb=short
fi
Test type flags:
unit:-m "unit or not (integration or e2e)"integration:-m "integration"e2e:-m "e2e"all: No marker filter
Parallel execution (if pytest-xdist installed):
pytest -n auto $PATH
For JavaScript/TypeScript Projects
Jest/Vitest:
npm test -- $PATH
# or for coverage
npm test -- --coverage
Playwright E2E:
npx playwright test $PATH
# or with UI
npx playwright test --ui
Cypress:
npx cypress run
# or interactive
npx cypress open
Coverage Reports
After running tests, check for coverage:
- Python: Look for
htmlcov/index.htmlor.coveragefile - JavaScript: Look for
coverage/lcov-report/index.html
Report coverage percentage to the user.
Common Patterns in User's Projects
| Project | Framework | Command |
|---|---|---|
| eruditiontx-services-mvp | pytest + asyncio | uv run pytest -n auto |
| mathmatterstx-services | pytest | uv run pytest |
| eruditiontx-client-mvp | Jest + Vitest | npm test |
| erudition-math-v2 | Jest + Playwright | npm test / npm run test:e2e |
| notaryo.ph | Jest + Playwright | pnpm test |
| bocs-turbo | Jest + Cypress | pnpm test |
Output Format
Running tests for: [project-name]
Framework detected: [pytest/jest/playwright]
Test type: [unit/integration/e2e/all]
[Test output]
Summary:
- Passed: X
- Failed: Y
- Skipped: Z
- Coverage: XX%
Skills Info
Original Name:testAuthor:allanninal
Download