# Test Runner

> Use when running tests, asked "run the tests", "are tests passing", "run tests with coverage", "check coverage", "test this change", "did I break anything".

- Skill: `uner4s/test-runner` (Agent Skill, multi-file: 2 files)
- Install (CLI): `npx skillmds@latest add uner4s/test-runner`
- Raw SKILL.md: https://api.skillmd.com/api/skills/uner4s/test-runner/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Coding & Dev Tools
- Author: Uner4s (https://skillmd.com/u/uner4s)
- Updated: 2026-09-22
- Page: https://skillmd.com/skills/uner4s/test-runner

---


# Test Runner

**Rule:** A change that breaks existing tests is not done. Run tests after every code change, not at the end.

## Steps

1. Run tests:
   ```bash
   bash ~/.claude/skills/test-runner/scripts/run-tests.sh
   ```

2. For coverage report:
   ```bash
   bash ~/.claude/skills/test-runner/scripts/run-tests.sh --cov
   ```

3. From the output, identify:
   - **Failing tests** — fix before continuing, never skip
   - **New code with no tests** — flag it explicitly
   - **Coverage drop** — if it decreased, justify it or add tests

## After Fixing a Failure

Re-run immediately after each fix — never batch multiple fixes and run once at the end.

