mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-04 12:31:06 +08:00
16 lines
482 B
JavaScript
16 lines
482 B
JavaScript
import path from 'path';
|
|
import initStoryshots, { multiSnapshotWithOptions } from '@storybook/addon-storyshots';
|
|
import { render as renderer } from 'enzyme';
|
|
import { createSerializer } from 'enzyme-to-json';
|
|
|
|
// HTML Snapshots
|
|
initStoryshots({
|
|
framework: 'react',
|
|
configPath: path.join(__dirname, '../'),
|
|
integrityOptions: { cwd: path.join(__dirname, '..', 'stories') },
|
|
test: multiSnapshotWithOptions({
|
|
renderer,
|
|
}),
|
|
snapshotSerializers: [createSerializer()],
|
|
});
|