storybook/docs/snippets/react/storybook-testing-addon-optional-config.js.mdx
2021-11-09 01:41:54 +00:00

10 lines
229 B
Plaintext

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