testing-strategy
Installation
SKILL.md
Testing Strategy Skill
Purpose
Defines comprehensive testing approaches for web applications, ensuring code quality, security, accessibility, and performance through automated and manual testing practices.
Rules
Testing Pyramid (MUST Follow)
/\
/E2E\ ← Few, slow, expensive (UI tests)
/------\
/Integration\ ← More, moderate speed (API, DB tests)
/------------\
/ Unit Tests \ ← Many, fast, cheap (function/method tests)
/------------------\