mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-05 05:21:06 +08:00
12 lines
272 B
JavaScript
12 lines
272 B
JavaScript
import path from 'path';
|
|
import { mount } from 'enzyme';
|
|
import toJSON from 'enzyme-to-json';
|
|
import initStoryshots from '../src';
|
|
|
|
initStoryshots({
|
|
framework: 'react',
|
|
configPath: path.join(__dirname, '..', '.storybook'),
|
|
renderer: mount,
|
|
serializer: toJSON,
|
|
});
|