What problem does it solve? Setting up and maintaining a test suite for React/Next.js projects is time-consuming: writing test stubs for every component, scaffolding E2E tests for each route, and interpreting raw coverage reports all require repetitive manual effort. ## Core Features & Use Cases - Test Suite Generation: Scans React/TypeScript components and generates Jest + React Testing Library test stubs, including optional jest-axe accessibility assertions. - Coverage Analysis: Parses Istanbul JSON or LCOV coverage reports, identifies critical untested paths (auth, payment, API routes), and enforces thresholds with a strict mode for CI pipelines. - E2E Scaffolding: Detects Next.js App Router or Pages Router routes and generates Playwright test files, Page Object Model classes, playwright.config.ts, and auth fixtures. - Use Case: After building a new Next.js feature, run the scaffolder on src/app to generate Playwright specs per route, generate unit test stubs for new components, then verify the 80% coverage threshold before merging. ## Quick Start Ask the assistant to generate Jest test stubs for the components in src/components and then analyze the coverage report at coverage/coverage-final.json against an 80 percent threshold.