ai-testing
Installation
SKILL.md
AI Testing Guidelines
Principles for writing tests that are reliable, maintainable, and actually catch bugs.
1. Test Design
Define Purpose and Scope
Each test should have a clear, singular purpose:
- Unit test: Isolated function logic
- Integration test: Component interactions
- Error path test: Specific failure handling
- Success path test: Happy path behavior
Don't mix concerns. A test that checks both success and error handling is two tests.