You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
module.exports = {
|
|
|
|
setupFiles: [
|
|
|
|
'./tests/setup.js',
|
|
|
|
],
|
|
|
|
moduleFileExtensions: [
|
|
|
|
'ts',
|
|
|
|
'tsx',
|
|
|
|
'js',
|
|
|
|
'md',
|
|
|
|
],
|
|
|
|
transform: {
|
|
|
|
'\\.tsx?$': './node_modules/antd-tools/lib/jest/codePreprocessor',
|
|
|
|
'\\.js$': './node_modules/antd-tools/lib/jest/codePreprocessor',
|
|
|
|
'\\.md$': './node_modules/antd-tools/lib/jest/demoPreprocessor',
|
|
|
|
},
|
|
|
|
testRegex: 'demo\\.test\\.js$',
|
|
|
|
testEnvironment: 'node',
|
|
|
|
snapshotSerializers: [
|
|
|
|
'enzyme-to-json/serializer',
|
|
|
|
],
|
|
|
|
globals: {
|
|
|
|
'ts-jest': {
|
|
|
|
tsConfigFile: './tsconfig.test.json',
|
|
|
|
},
|
|
|
|
},
|
|
|
|
};
|