mirror of
https://github.com/storybookjs/storybook.git
synced 2025-03-20 05:02:37 +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() });
|