storybook/docs/snippets/common/storybook-preview-register-msw-addon.js.mdx
2022-05-25 16:22:00 +01:00

25 lines
503 B
Plaintext

```js
// .storybook/preview.js
import { initialize, mswDecorator } from 'msw-storybook-addon';
/*
* Initializes MSW
* See https://github.com/mswjs/msw-storybook-addon#configuring-msw
* to learn how to customize it
*/
initialize();
export const parameters = {
actions: { argTypesRegex: '^on[A-Z].*' },
controls: {
matchers: {
color: /(background|color)$/i,
date: /Date$/,
},
},
};
// Provide the MSW addon decorator globally
export const decorators = [mswDecorator];
```