testing-strategies
Installation
SKILL.md
Testing Strategies
Complete framework for building effective, maintainable test suites that give you confidence to ship.
When to Use
- Setting up testing for new projects
- Improving existing test coverage
- Practicing Test-Driven Development (TDD)
- Debugging flaky tests
- Deciding what to test (and what not to)
- Organizing test files and structure
Core Testing Principles
Test Behavior, Not Implementation:
- Test what the code does, not how
- Tests should survive refactoring
- Focus on public interfaces