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