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

  1. Tests live in source control with the code version they verify.
  2. Fast unit tests form the safe green zone.
  3. Integration, browser, database, and other slow/configured tests are separated from the safe green zone.
  4. Test layout should let a developer find tests by project, class/module, and unit of work.
  5. 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:

Installs
2
First Seen
Apr 26, 2026
tests-suite-organization — klovaaxel/agent-testing-skills