storybook/docs/snippets/react/storybook-testing-addon-optional-config.js.mdx
Leonardo Marques ff4ef90ba3
Update react/storybook-testing-addon-optional-config.js.mdx
This would match what the documentation describes on this page:
https://storybook.js.org/docs/react/writing-tests/importing-stories-in-tests

The code snipped below this one (on the website) mentions `setupFile.js` and the current mention (`setupTests.js`) might lead people to mistakes.
2022-04-12 18:35:37 +02:00

11 lines
229 B
Plaintext

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