mirror of
https://github.com/storybookjs/storybook.git
synced 2025-03-19 05:02:40 +08:00
10 lines
261 B
JavaScript
10 lines
261 B
JavaScript
|
const path = require('path');
|
||
|
const baseConfig = require('./jest.config.base');
|
||
|
|
||
|
module.exports = {
|
||
|
...baseConfig,
|
||
|
setupFilesAfterEnv: [path.resolve('./jest.init.browser.ts')],
|
||
|
testEnvironment: 'jest-environment-jsdom',
|
||
|
setupFiles: ['raf/polyfill'],
|
||
|
};
|