Files
TREK/client/tests/helpers/msw/handlers/settings.ts
T
2026-04-07 12:31:09 +02:00

17 lines
422 B
TypeScript

import { http, HttpResponse } from 'msw';
import { buildSettings } from '../../factories';
export const settingsHandlers = [
http.get('/api/settings', () => {
return HttpResponse.json({ settings: buildSettings() });
}),
http.put('/api/settings', () => {
return HttpResponse.json({ success: true });
}),
http.post('/api/settings/bulk', () => {
return HttpResponse.json({ success: true });
}),
];