mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-05 05:21:06 +08:00
10 lines
258 B
JavaScript
10 lines
258 B
JavaScript
import path from 'path';
|
|
import initStoryshots, { multiSnapshotWithOptions } from '../src';
|
|
|
|
// with react-test-renderer
|
|
initStoryshots({
|
|
framework: 'react',
|
|
configPath: path.join(__dirname, '..', '.storybook'),
|
|
test: multiSnapshotWithOptions({}),
|
|
});
|