storybook/docs/snippets/react/storybook-testing-addon-optional-config.js.mdx
2021-10-20 15:58:44 +01:00

11 lines
230 B
Plaintext

```js
// setupTests.js
import { setGlobalConfig } from '@storybook/testing-react';
// Storybook's preview file location
import * as globalStorybookConfig from './.storybook/preview';
setGlobalConfig(globalStorybookConfig);
```