mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-06 06:41:25 +08:00
725 B
725 B
import path from 'path';
export default {
resolveSnapshotPath: (testPath) => {
const fileName = path.basename(testPath);
const fileNameWithoutExtension = fileName.replace(/\.[^/.]+$/, '');
const modifiedFileName = `${fileNameWithoutExtension}.storyshot`;
// Configure Jest to generate snapshot files using the following naming convention (__snapshots__/Button.storyshot)
return path.join(path.dirname(testPath), '__snapshots__', modifiedFileName);
},
resolveTestPath: (snapshotFilePath, snapshotExtension) =>
path.basename(snapshotFilePath, snapshotExtension),
testPathForConsistencyCheck: 'example.storyshot',
};