# Test Runner

> Runs tests and explains results. Use when user asks to run tests, check tests, or verify code works.

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

---


# Test Runner Skill

## Instructions

When user asks to run tests:

1. **Find test files** using Glob tool
2. **Run tests** using Bash tool
3. **Analyze results** and explain failures
4. **Suggest fixes** if tests fail

## Steps to Follow

### Step 1: Discover Tests
```
Use Glob to find: **/*test*.py, **/*.test.js, **/*.spec.ts
```

### Step 2: Run Tests
```bash
# Python
pytest -v

# JavaScript
npm test

# Go
go test ./...
```

### Step 3: Analyze Output
- Count passed/failed
- Identify failure reasons
- Show relevant code snippets

### Step 4: Report Format
```
## Test Results

✅ Passed: X
❌ Failed: Y

### Failures
[List each failure with explanation]

### Suggested Fixes
[Actionable fixes for failures]
```

---
> Converted and distributed by [TomeVault](https://tomevault.io/claim/gonsoomoon-ml) — claim your Tome and manage your conversions.
<!-- tomevault:4.0:skill_md:2026-04-16 -->

