What problem does it solve? Setting up a coherent test strategy across unit, integration, and E2E layers is time-consuming, and teams often struggle with flaky tests, inconsistent tooling, and unclear coverage targets. ## Core Features & Use Cases - Full Test Pyramid Coverage: Provides ready-to-use configurations and examples for Vitest unit tests, React Testing Library component tests, MSW API mocking, Testcontainers database tests, and Playwright E2E flows. - Coverage Enforcement: Defines concrete coverage thresholds (80% lines/functions, 70% branches) with CI integration via GitHub Actions and Codecov. - Flaky Test Debugging: Includes a diagnostic table mapping common failure symptoms to fixes. - Use Case: When adding a new API endpoint, use this Skill to scaffold an integration test with a real Postgres container, mock external services like Stripe with MSW, and wire coverage reporting into CI. ## Quick Start Ask the agent to set up Vitest with React Testing Library and write tests for a specific component or utility function in your project.