Show test status from last run (without re-executing)
Displays test results from the last run without re-executing tests.
/plugin marketplace add laurigates/claude-plugins/plugin install testing-plugin@lgates-claude-plugins[--history] [--coverage] [--flaky]test/Quick status check without re-running tests. Reads cached results from last test execution.
Use when:
--history: Show trend from recent runs--coverage: Include coverage summary--flaky: Identify potentially flaky tests| Framework | Cache Location |
|---|---|
| pytest | .pytest_cache/, htmlcov/ |
| Vitest | node_modules/.vitest/ |
| Jest | coverage/, .jest-cache/ |
| Playwright | test-results/, playwright-report/ |
| Go | coverage.out |
| Cargo | target/debug/ |
Find Latest Results:
Coverage Summary (if --coverage):
Flaky Detection (if --flaky):
History (if --history):
## Test Status (last run: 5 minutes ago)
| Tier | Passed | Failed | Skipped |
|-------------|--------|--------|---------|
| Unit | 45 | 2 | 0 |
| Integration | 12 | 0 | 1 |
| E2E | 8 | 1 | 0 |
**Coverage**: 78% (target: 80%)
### Recent Failures
- test_user_validation: AssertionError (tests/test_user.py:42)
- e2e/login.spec.ts: Timeout (line 15)
### Flaky Tests (if --flaky)
- test_async_handler: 3 failures in last 10 runs
### Suggested Actions
- Run `/test:quick` to verify current state
- Use `/test:consult coverage` for gap analysis
/test:quick to verify current state/test:consult coverage/test:consult flaky/test:quick or /test:full