# Testing

> Plans and runs tests for software in this ecosystem. Use when adding features, fixing bugs, or before declaring work done.

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

---


# Testing

Minimum bar: **one automated test that fails if the change is broken**.

| Kind | Tool |
|------|------|
| Python | `se_test` → pytest |
| Node | `npm test` / node:test |
| C/Make | `make` / `make test` |
| Android | `android_run_tests` |
| SQL | `db_query` against fixtures, not production drops |

- Prefer tests of domain behavior over snapshot spam.
- Don't mock the thing you're trying to prove.
- If the toolchain is missing, report it; don't skip quietly.
- Record the command that was run and its exit code.

