mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-24 11:10:01 +08:00
01ca7c7821
* test: replace testing-lib * test: replace testing-lib * test: replace testing-lib * test: update snap * test: replace testing-lib * test: replace testing-lib * test: update for lint * merge: merge * test: testing-lib * test: replace testing-lib * test: testing-lib * test: testing-lib * test: replace testing-lib * test: replace testing-lib * test: Replace test aria replacment logic * test: Update snapshot * chore: hack for id * test: clean up * test: clean demo * chore: update * test: snapshot update * test: fix snapshot rep logic * test: fix snapshot rep logic * test: fix snapshot rep logic * chore: update demo * test: fix snapshot rep logic * test: Update snapshot * test: rest snapshot * test: update snapshot * test: Update test case * test: config env * chore: clean up * chore: Use renderServer instead * test: adjust testing logic * test: modify test logic * test: split ssr test * test: skip if need skip * chore: ignore test file covv Co-authored-by: 二货机器人 <smith3816@gmail.com>
60 lines
2.1 KiB
JavaScript
60 lines
2.1 KiB
JavaScript
const transformIgnorePatterns = [
|
|
'/dist/',
|
|
// Ignore modules without es dir.
|
|
// Update: @babel/runtime should also be transformed
|
|
'node_modules/(?!.*@(babel|ant-design))(?!array-move)[^/]+?/(?!(es|node_modules)/)',
|
|
];
|
|
|
|
function getTestRegex(libDir) {
|
|
if (libDir === 'dist') {
|
|
return 'demo\\.test\\.js$';
|
|
}
|
|
return '.*\\.test\\.(j|t)sx?$';
|
|
}
|
|
|
|
module.exports = {
|
|
verbose: true,
|
|
testEnvironment: 'jsdom',
|
|
setupFiles: ['./tests/setup.js'],
|
|
setupFilesAfterEnv: ['./tests/setupAfterEnv.ts'],
|
|
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'],
|
|
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',
|
|
},
|
|
testRegex: getTestRegex(process.env.LIB_DIR),
|
|
collectCoverageFrom: [
|
|
'components/**/*.{ts,tsx}',
|
|
'!components/*/style/index.tsx',
|
|
'!components/style/index.tsx',
|
|
'!components/*/locale/index.tsx',
|
|
'!components/*/__tests__/type.test.tsx',
|
|
'!components/**/*/interface.{ts,tsx}',
|
|
'!components/*/__tests__/image.test.{ts,tsx}',
|
|
'!components/__tests__/node.test.tsx',
|
|
],
|
|
transformIgnorePatterns,
|
|
snapshotSerializers: ['enzyme-to-json/serializer'],
|
|
globals: {
|
|
'ts-jest': {
|
|
tsConfig: './tsconfig.test.json',
|
|
},
|
|
},
|
|
testEnvironmentOptions: {
|
|
url: 'http://localhost',
|
|
},
|
|
};
|