mirror of
https://github.com/smartxworks/sunmao-ui.git
synced 2025-02-11 17:37:40 +08:00
18 lines
357 B
JavaScript
18 lines
357 B
JavaScript
const path = require('path');
|
|
module.exports = {
|
|
...require('../../config/jest.config'),
|
|
moduleFileExtensions: ['ts', 'js'],
|
|
testEnvironment: 'node',
|
|
transform: {
|
|
'^.+\\.[jt]sx?$': [
|
|
'babel-jest',
|
|
{
|
|
configFile: path.resolve(
|
|
__dirname,
|
|
'../../config/babel.ts.config.js'
|
|
),
|
|
},
|
|
],
|
|
},
|
|
};
|