陈帅
6 years ago
committed by
GitHub
1 changed files with 4 additions and 5 deletions
@ -1,19 +1,18 @@ |
|||
const libDir = process.env.LIB_DIR; |
|||
|
|||
// jest config for server render environment
|
|||
module.exports = { |
|||
setupFiles: ['./tests/setup.js'], |
|||
moduleFileExtensions: ['js', 'md', 'ts', 'tsx'], |
|||
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: `${libDir === 'dist' ? 'demo' : '.*'}\\.test\\.js$`, |
|||
testRegex: 'demo\\.test\\.js$', |
|||
testEnvironment: 'node', |
|||
snapshotSerializers: ['enzyme-to-json/serializer'], |
|||
globals: { |
|||
'ts-jest': { |
|||
tsConfig: './tsconfig.test.json', |
|||
tsConfigFile: './tsconfig.test.json', |
|||
}, |
|||
}, |
|||
}; |
|||
|
Loading…
Reference in new issue