ant-design/.jest.js

59 lines
2.0 KiB
JavaScript
Raw Normal View History

2017-06-30 15:29:28 +08:00
const transformIgnorePatterns = [
'/dist/',
2020-03-29 14:07:42 +08:00
// Ignore modules without es dir.
// Update: @babel/runtime should also be transformed
'node_modules/(?!.*@(babel|ant-design))(?!array-move)[^/]+?/(?!(es|node_modules)/)',
2017-06-30 15:29:28 +08:00
];
function getTestRegex(libDir) {
if (libDir === 'dist') {
return 'demo\\.test\\.js$';
}
return '.*\\.test\\.(j|t)sx?$';
}
2017-06-30 15:29:28 +08:00
module.exports = {
verbose: true,
testEnvironment: 'jsdom',
2018-12-16 11:26:36 +08:00
setupFiles: ['./tests/setup.js'],
setupFilesAfterEnv: ['./tests/setupAfterEnv.ts'],
2018-12-16 11:26:36 +08:00
moduleFileExtensions: ['ts', 'tsx', 'js', 'jsx', 'json', 'md'],
modulePathIgnorePatterns: ['/_site/'],
moduleNameMapper: {
'/^dnd-core$/': 'dnd-core/dist/cjs',
'/^react-dnd$/': 'react-dnd/dist/cjs',
'/^react-dnd-html5-backend$/': 'react-dnd-html5-backend/dist/cjs',
'/^react-dnd-touch-backend$/': 'react-dnd-touch-backend/dist/cjs',
'/^react-dnd-test-backend$/': 'react-dnd-test-backend/dist/cjs',
'/^react-dnd-test-utils$/': 'react-dnd-test-utils/dist/cjs',
'/\\.(css|less)$/': 'identity-obj-proxy',
},
testPathIgnorePatterns: ['/node_modules/', 'dekko', 'node', 'image.test.js', 'image.test.ts'],
2017-06-30 15:29:28 +08:00
transform: {
'\\.tsx?$': './node_modules/@ant-design/tools/lib/jest/codePreprocessor',
'\\.(m?)js$': './node_modules/@ant-design/tools/lib/jest/codePreprocessor',
'\\.md$': './node_modules/@ant-design/tools/lib/jest/demoPreprocessor',
'\\.(jpg|png|gif|svg)$': './node_modules/@ant-design/tools/lib/jest/imagePreprocessor',
2017-06-30 15:29:28 +08:00
},
testRegex: getTestRegex(process.env.LIB_DIR),
2017-06-30 15:29:28 +08:00
collectCoverageFrom: [
'components/**/*.{ts,tsx}',
'!components/*/style/index.tsx',
'!components/style/index.tsx',
'!components/*/locale/index.tsx',
'!components/*/__tests__/type.test.tsx',
2018-01-29 11:27:53 +08:00
'!components/**/*/interface.{ts,tsx}',
'!components/*/__tests__/image.test.{ts,tsx}',
2017-06-30 15:29:28 +08:00
],
transformIgnorePatterns,
2018-12-16 11:26:36 +08:00
snapshotSerializers: ['enzyme-to-json/serializer'],
globals: {
'ts-jest': {
2018-12-16 11:26:36 +08:00
tsConfig: './tsconfig.test.json',
},
},
testEnvironmentOptions: {
url: 'http://localhost',
},
2017-06-30 15:29:28 +08:00
};