tests-suite-organization
Installation
SKILL.md
Tests Suite Organization
Goal
Keep tests easy to find, fast to run, and trustworthy in local development and CI.
Core Principles
- Tests live in source control with the code version they verify.
- Fast unit tests form the safe green zone.
- Integration, browser, database, and other slow/configured tests are separated from the safe green zone.
- Test layout should let a developer find tests by project, class/module, and unit of work.
- Shared test helpers should improve readability, not hide important setup.
Suite Mapping
Prefer the repository's existing layout. If none exists, choose a simple mapping: