ant-design/.jest.js

46 lines
1.6 KiB
JavaScript
Raw Normal View History

2017-06-30 15:29:28 +08:00
const libDir = process.env.LIB_DIR;
const transformIgnorePatterns = [
'/dist/',
'node_modules/[^/]+?/(?!(es|node_modules)/)', // Ignore modules without es dir
2017-06-30 15:29:28 +08:00
];
module.exports = {
verbose: true,
2018-12-16 11:26:36 +08:00
setupFiles: ['./tests/setup.js'],
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',
},
2018-12-16 11:26:36 +08:00
testPathIgnorePatterns: ['/node_modules/', 'dekko', 'node'],
2017-06-30 15:29:28 +08:00
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',
2018-12-26 16:01:00 +08:00
'\\.(jpg|png|gif|svg)$': './node_modules/antd-tools/lib/jest/imagePreprocessor',
2017-06-30 15:29:28 +08:00
},
2018-11-28 12:20:58 +08:00
testRegex: `${libDir === 'dist' ? 'demo' : '.*'}\\.test\\.js$`,
2017-06-30 15:29:28 +08:00
collectCoverageFrom: [
'components/**/*.{ts,tsx}',
'!components/*/style/index.tsx',
'!components/style/index.tsx',
'!components/*/locale/index.tsx',
2017-08-18 17:21:18 +08:00
'!components/*/__tests__/**/type.tsx',
2018-01-29 11:27:53 +08:00
'!components/**/*/interface.{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',
},
},
testURL: 'http://localhost',
2017-06-30 15:29:28 +08:00
};