mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-04 23:21:15 +08:00
15 lines
306 B
JavaScript
15 lines
306 B
JavaScript
import path from 'path';
|
|
import initStoryshots, { shallowSnapshot } from '../src';
|
|
|
|
initStoryshots({
|
|
framework: 'react',
|
|
configPath: path.join(__dirname, '..', '.storybook'),
|
|
test: data =>
|
|
shallowSnapshot({
|
|
...data,
|
|
options: {
|
|
serializer: JSON.stringify,
|
|
},
|
|
}),
|
|
});
|