testing-strategy
Installation
SKILL.md
Testing Strategy
Decide what to test, which test type to use, and how much coverage is enough. Strategy layer above tool-specific skills.
When to Use
- Deciding unit vs integration vs E2E for a feature
- Planning test coverage before writing tests
- Auditing existing tests for gaps
- Producing a test plan for a PR or feature
Don't use for:
- Writing actual unit tests (use
unit-testingorjest) - Writing React component tests (use
react-testing-library) - Writing E2E tests (use
playwrightore2e-testing) - Verifying evidence after tests run (use
verification-protocol)