4d64576f22
- Vitest + React Testing Library + MSW setup - API client: 11 unit tests (fetch, errors, auth header, download, network failure) - Service hooks: 26 tests across members, distributions, stock, dashboard, staff - Custom hooks: 5 debounce tests (timer behavior, reset, custom delay) - Components: 5 tests (offline banner, error boundary with retry) - E2E: staff management page interactions - npm scripts: test, test:run, test:coverage
6 lines
126 B
TypeScript
6 lines
126 B
TypeScript
import { setupServer } from "msw/node"
|
|
|
|
import { handlers } from "./handlers"
|
|
|
|
export const server = setupServer(...handlers)
|