soulsync/webui/src/test/msw.ts
Antti Kettunen 4b2c10fd12
Add MSW-backed issue API tests
- Add a shared MSW server to the Vitest setup
- Cover issue API request, success, and error scenarios
- Add msw as a dev dependency for future API-layer tests
2026-05-13 22:26:24 +03:00

6 lines
152 B
TypeScript

import { HttpResponse, http } from 'msw';
import { setupServer } from 'msw/node';
export { HttpResponse, http };
export const server = setupServer();