mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-07 05:41:07 +08:00
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.
11 lines
229 B
Plaintext
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);
|
|
```
|