mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-03 05:04:51 +08:00
12 lines
343 B
JavaScript
12 lines
343 B
JavaScript
const path = require('path');
|
|
const globalJestConfig = require('../../../jest.config');
|
|
|
|
const finalJestConfig = { ...globalJestConfig };
|
|
|
|
finalJestConfig.rootDir = path.join(__dirname, '../../..');
|
|
finalJestConfig.testMatch = [
|
|
'<rootDir>/examples/official-storybook/storyshots-puppeteer/*.runner.js',
|
|
];
|
|
|
|
module.exports = finalJestConfig;
|