# Run Tests

> Run the ccmux test suite and typecheck, then summarize failures. Use when asked to test, verify, typecheck, or check a change.

- Skill: `thinkyou0714/run-tests-2` (Agent Skill)
- Install (CLI): `npx skillmds@latest add thinkyou0714/run-tests-2`
- Raw SKILL.md: https://api.skillmd.com/api/skills/thinkyou0714/run-tests-2/raw
- Safety review: pending (external: skill-scanner PASS, skillspector PASS)
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Research & Search
- Author: thinkyou0714 (https://skillmd.com/u/thinkyou0714)
- Updated: 2026-09-22
- Page: https://skillmd.com/skills/thinkyou0714/run-tests-2

---


Run tests + typecheck and report concisely.

1. Ensure deps are present (SessionStart bootstrap runs `npm ci`; else run it).
2. Tests: `npm test` (→ `vitest run`); single file `npx vitest run <path>`. Typecheck/build: `npm run build` (→ `tsc`).
3. Summarize: total pass/fail, and for each failure the test name + first failing assertion; report any `tsc` type errors with file/line.
4. Do not modify source unless asked.

