Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 | 5x | // src/test/mocks/server.ts
import { setupServer } from 'msw/node';
import { handlers } from './handlers.ts';
// Setup requests interception using the given handlers
export const server = setupServer(...handlers); |