mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-04 23:11:23 +08:00
13 lines
349 B
JavaScript
13 lines
349 B
JavaScript
const config = require('../../jest.config');
|
|
|
|
module.exports = {
|
|
...config,
|
|
roots: [__dirname],
|
|
moduleNameMapper: {
|
|
'^react$': 'preact/compat',
|
|
'^react-dom/test-utils$': 'preact/test-utils',
|
|
'^react-dom$': 'preact/compat',
|
|
'^enzyme-adapter-react-16$': '<rootDir>/examples/preact-kitchen-sink/preact-enzyme-mapping.js',
|
|
},
|
|
};
|