What problem does it solve? Frontend projects often lack consistent automated test coverage, leaving utility functions, hooks, API layers, and components untested against edge cases and regressions. This Skill establishes a complete testing infrastructure and generates runnable, high-quality test suites for React 19 + Ant Design v6 + TypeScript 5 projects. ## Core Features & Use Cases - Test Infrastructure Setup: Configures Vitest with jsdom, @testing-library/react, jest-dom, coverage reporting, and package.json test scripts. - Multi-Layer Test Generation: Writes unit tests for pure functions and API clients, hook tests with renderHook, and component render/interaction tests wrapped in Ant Design ConfigProvider + App context. - Coverage Discipline: Enforces AAA test structure, normal/exception/boundary scenario coverage, and tests/ directory conventions with standardized naming. - Use Case: After fixing a bug in a bond yield calculator, ask the Skill to generate regression tests covering normal inputs, invalid prices, and boundary values, then verify with npx vitest run. ## Quick Start Generate Vitest unit tests and React Testing Library component tests for the files in src/lib/bond and src/views/bond, covering normal, exception, and boundary scenarios.