Define Handlers
You can define custom handlers for your custom endpoints or for existing endpoints (aka OCC Endpoints) of spartacus-mock.
Create a handlers file
src/mock-server/handlers.tsCreate a folder
src/mock-server/mock-datawhere all your mock-data livesIn the handlers file you can define all your custom handlers like in this example:
// src/mock-server/handlers.ts
import { getDefaultRoutes } from '@valantic/spartacus-mock';
import {
HttpHandler,
HttpResponse,
PathParams,
StrictRequest,
http,
} from 'msw';
import { environment } from '../environments/environment';
import { countryList } from './mock-data/countries';
// default routes defined in the spartacus-mock library
// for custom routes, use your getRoutes function explained above
const defaultRoutes = getDefaultRoutes(environment);
export const handlers = (): RestHandler[] => {
return [
http.get<{}, { foo: number; bar: string }>(
defaultRoutes.languages,
({ request, params }) => {
return HttpResponse.json(languageList());
}
),
];
};Defining a custom handler for an existing route (aka OCC Endpoint) will override the default handler for this route.
Create a file
src/mock-server/mock-data/languages.tsAdd a
languageListfunction to return the mock-data for the languages endpoint:
Append your handlers to the mockConfig in your
main.tsfile
Last updated