What problem does it solve? Teams often write inconsistent tests that rely on implementation details, scattered mock setups, or the wrong tooling, leading to brittle test suites. This Skill enforces a unified testing strategy so every component, hook, and utility is tested the same way. ## Core Features & Use Cases - Standardized Test Stack: Mandates Vitest as the runner, React Testing Library for components, and MSW for network mocking, with tests colocated in __test__ folders. - Behavior-Driven Testing: Provides templates and rules for testing user-visible behavior (roles, text, interactions) instead of internal state or implementation details. - Mocking Conventions: Centralizes global mocks and MSW handlers in src/mocks, and shows how to wrap components in a test QueryClientProvider for TanStack Query. - Use Case: When adding a new React component, use this Skill to generate a colocated test file that renders the component, simulates clicks, mocks API calls with MSW, and verifies accessibility. ## Quick Start Write a Vitest test for my React component following the team's testing standards, including MSW mocks and a TanStack Query provider wrapper.