mirror of
https://github.com/storybookjs/storybook.git
synced 2025-03-22 05:02:18 +08:00
8 lines
170 B
JavaScript
8 lines
170 B
JavaScript
|
import 'jest-enzyme/lib/index';
|
||
|
|
||
|
// setup file
|
||
|
import { configure } from 'enzyme';
|
||
|
import Adapter from 'enzyme-adapter-react-16';
|
||
|
|
||
|
configure({ adapter: new Adapter() });
|