mirror of
https://github.com/smartxworks/sunmao-ui.git
synced 2025-01-06 16:34:25 +08:00
19 lines
396 B
JavaScript
19 lines
396 B
JavaScript
|
const path = require('path');
|
||
|
module.exports = {
|
||
|
...require('../../config/jest.config'),
|
||
|
moduleFileExtensions: ['ts', 'js', 'tsx'],
|
||
|
testEnvironment: 'jsdom',
|
||
|
transform: {
|
||
|
'^.+\\.[jt]sx?$': [
|
||
|
'babel-jest',
|
||
|
{
|
||
|
configFile: path.resolve(
|
||
|
__dirname,
|
||
|
'../../config/babel.react.config.js'
|
||
|
),
|
||
|
},
|
||
|
],
|
||
|
},
|
||
|
testEnvironment: 'jsdom',
|
||
|
};
|