What problem does it solve? Frontend and test development often stalls when backend APIs are unavailable, unstable, or slow. This Skill sets up realistic mock API servers so you can develop and test against predictable endpoints without depending on live services. ## Core Features & Use Cases - MSW Handler Setup: Defines request handlers for REST and GraphQL endpoints, with browser service worker and Node test server configurations. - Json-Server & Custom Routes: Spins up file-backed mock APIs with custom middleware, authentication simulation, and route rewriting. - Fixtures, Factories & Scenarios: Generates realistic test data with faker factories and reusable scenarios for empty, error, loading, and slow-network states, plus Playwright route interception for E2E tests. - Use Case: While building a user management dashboard, mock the /api/users endpoints with MSW, then test empty states, 500 errors, and network failures in Vitest without touching a real backend. ## Quick Start Set up an MSW mock server with handlers for my REST API endpoints and integrate it into my Vitest test suite.