mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-07 03:01:05 +08:00
26 lines
740 B
Plaintext
26 lines
740 B
Plaintext
```js
|
|
// storybook.text.js
|
|
|
|
import path from 'path';
|
|
|
|
import initStoryshots from '@storybook/addon-storyshots';
|
|
|
|
// the required import from the @storybook/addon-storyshots-puppeteer addon
|
|
import { imageSnapshot } from '@storybook/addon-storyshots-puppeteer'
|
|
|
|
// function to customize the snapshot location
|
|
const getMatchOptions = ({ context: { fileName }}) => {
|
|
// Generates a custom path based on the file name and the custom directory.
|
|
const snapshotPath = path.join(path.dirname(fileName), 'your-custom-directory');
|
|
return { customSnapshotsDir: snapshotPath };
|
|
}
|
|
|
|
initStoryshots({
|
|
// your own configuration
|
|
test: imageSnapshot({
|
|
//
|
|
// invoke the function above here
|
|
getMatchOptions
|
|
})
|
|
});
|
|
``` |