- Mock Rest and GraphQL requests right inside your story.
- Document how a component behaves in various scenarios.
- Get a11y, snapshot and visual tests using other addons for free.
Full documentation and live demos
With npm:
npm i msw msw-storybook-addon -D
Or with yarn:
yarn add msw msw-storybook-addon -D
If you already use MSW in your project, you have likely done this before so you can skip this step.
npx msw init public/
Refer to the MSW official guide for framework specific paths if you don't use public
.
Enable MSW in Storybook by initializing MSW and providing the MSW decorator in ./storybook/preview.js
:
import { initialize, mswDecorator } from 'msw-storybook-addon';
// Initialize MSW
initialize();
// Provide the MSW addon decorator globally
export const decorators = [mswDecorator];
When running Storybook, you have to serve the public
folder as an asset to Storybook. Refer to the docs if needed.
npm run start-storybook -s public
You can pass request handlers (https://mswjs.io/docs/basics/request-handler) into the handlers
property of the msw
parameter. This is commonly an array of handlers.
import { rest } from 'msw'
export const SuccessBehavior = () => <UserProfile />
SuccessBehavior.parameters = {
msw: {
handlers: [
rest.get('/user', (req, res, ctx) => {
return res(
ctx.json({
firstName: 'Neil',
lastName: 'Maverick',
})
)
}),
]
},
}
The handlers
property can also be an object where the keys are either arrays of handlers or a handler itself. This enables you to inherit (and optionally overwrite/disable) handlers from preview.js using parameter inheritance:
type MswParameter = {
handlers: RequestHandler[] | Record<string, RequestHandler | RequestHandler[]>
}
Suppose you have an application where almost every component needs to mock requests to /login
and /logout
the same way.
You can set global MSW handlers in preview.js for those requests and bundle them into a property called auth
, for example:
//preview.js
// These handlers will be applied in every story
export const parameters = {
msw: {
handlers: {
auth: [
rest.get('/login', (req, res, ctx) => {
return res(
ctx.json({
success: true,
})
)
}),
rest.get('/logout', (req, res, ctx) => {
return res(
ctx.json({
success: true,
})
)
}),
],
}
}
};
Then, you can use other handlers in your individual story. Storybook will merge both global handlers and story handlers:
// This story will include the auth handlers from preview.js and profile handlers
SuccessBehavior.parameters = {
msw: {
handlers: {
profile: rest.get('/profile', (req, res, ctx) => {
return res(
ctx.json({
firstName: 'Neil',
lastName: 'Maverick',
})
)
}),
}
}
}
Now suppose you want to ovewrite the global handlers for auth. All you have to do is set them again in your story and these values will take precedence:
// This story will overwrite the auth handlers from preview.js
FailureBehavior.parameters = {
msw: {
handlers: {
auth: rest.get('/login', (req, res, ctx) => {
return res(ctx.status(403))
}),
}
}
}
What if you want to disable global handlers? All you have to do is set them as null and they will be ignored for your story:
// This story will disable the auth handlers from preview.js
NoAuthBehavior.parameters = {
msw: {
handlers: {
auth: null,
others: [
rest.get('/numbers', (req, res, ctx) => {
return res(ctx.json([1, 2, 3]))
}),
rest.get('/strings', (req, res, ctx) => {
return res(ctx.json(['a', 'b', 'c']))
}),
],
}
}
}
msw-storybook-addon
starts MSW with default configuration. If you want to configure it, you can pass options to the initialize
function. They are the StartOptions from setupWorker.
A common example is to configure the onUnhandledRequest behavior, as MSW logs a warning in case there are requests which were not handled.
If you want MSW to bypass unhandled requests and not do anything:
// preview.js
import { initialize } from 'msw-storybook-addon';
initialize({
onUnhandledRequest: 'bypass'
})
If you want to warn a helpful message in case stories make requests that should be handled but are not:
// preview.js
import { initialize } from 'msw-storybook-addon';
initialize({
onUnhandledRequest: ({ method, url }) => {
if (url.pathname.startsWith('/my-specific-api-path')) {
console.error(`Unhandled ${method} request to ${url}.
This exception has been only logged in the console, however, it's strongly recommended to resolve this error as you don't want unmocked data in Storybook stories.
If you wish to mock an error response, please refer to this guide: https://mswjs.io/docs/recipes/mocking-error-responses
`)
}
},
})