mirror of
https://github.com/storybookjs/storybook.git
synced 2025-03-16 05:03:11 +08:00
12 lines
276 B
JavaScript
12 lines
276 B
JavaScript
const config = require('../../jest.config');
|
|
|
|
module.exports = {
|
|
...config,
|
|
roots: [__dirname],
|
|
transform: {
|
|
...config.transform,
|
|
'.*\\.(html)$': '<rootDir>/node_modules/jest-raw-loader',
|
|
},
|
|
moduleFileExtensions: [...config.moduleFileExtensions, 'html'],
|
|
};
|