# 06 Test

> Write and iterate tests until they pass, or validate a user journey end to end in the browser. Use when the user wants to add coverage, find what's untested, or walk a flow. Not for auditing test health or debugging a failure.

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

---


# Skill: test

Find untested behavior and iterate tests until they pass, or drive a full user journey through the browser and check each step.

## Actions

| #   | Action         | When to use                                                     |
| --- | -------------- | -------------------------------------------------------------- |
| 01  | `test`         | Find untested behaviors and write or iterate tests until they pass |
| 02  | `test-journey` | Validate a full user journey end-to-end in the browser         |

Pick the one action matching the intent; never default to `01`. Triggers like "write tests" or "what's untested" route to `01`, "test the user journey" or "end-to-end" to `02`. Ask one question when the intent is ambiguous.
Before running an action, read its file in `actions/`, not only the table or assets.

## Transversal rules

- One action per run: follow only the matching action file.
- Functional behavior only: never couple a test to implementation details.
- Never compromise quality for speed.

