mirror of
https://github.com/storybookjs/storybook.git
synced 2025-03-25 05:03:10 +08:00
9 lines
247 B
JavaScript
9 lines
247 B
JavaScript
|
import path from 'path';
|
||
|
import initStoryshots, { multiSnapshotWithOptions } from '@storybook/addon-storyshots';
|
||
|
|
||
|
initStoryshots({
|
||
|
framework: 'angular',
|
||
|
configPath: path.join(__dirname, '.storybook'),
|
||
|
test: multiSnapshotWithOptions({}),
|
||
|
});
|