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.
49 lines
973 B
49 lines
973 B
8 years ago
|
const libDir = process.env.LIB_DIR;
|
||
|
|
||
|
const transformIgnorePatterns = [
|
||
|
'/dist/',
|
||
|
'/node_modules/reqwest',
|
||
|
];
|
||
|
|
||
|
if (libDir !== 'es') {
|
||
|
transformIgnorePatterns.push('/node_modules/');
|
||
|
}
|
||
|
|
||
|
module.exports = {
|
||
|
setupFiles: [
|
||
|
'./tests/setup.js',
|
||
|
],
|
||
|
moduleFileExtensions: [
|
||
|
'ts',
|
||
|
'tsx',
|
||
|
'js',
|
||
|
'jsx',
|
||
|
'json',
|
||
|
'md',
|
||
|
],
|
||
|
modulePathIgnorePatterns: [
|
||
|
'/_site/',
|
||
|
],
|
||
|
testPathIgnorePatterns: [
|
||
|
'/node_modules/',
|
||
|
'dekko',
|
||
|
'node',
|
||
|
],
|
||
|
transform: {
|
||
|
'\\.tsx?$': './node_modules/typescript-babel-jest',
|
||
|
'\\.js$': './node_modules/babel-jest',
|
||
|
'\\.md$': './node_modules/antd-demo-jest',
|
||
|
},
|
||
|
testRegex: libDir ? 'demo\\.test\\.js$' : '.*\\.test\\.js$',
|
||
|
collectCoverageFrom: [
|
||
|
'components/**/*.{ts,tsx}',
|
||
|
'!components/*/style/index.tsx',
|
||
|
'!components/style/index.tsx',
|
||
|
'!components/*/locale/index.tsx',
|
||
|
],
|
||
|
transformIgnorePatterns,
|
||
|
snapshotSerializers: [
|
||
|
'enzyme-to-json/serializer',
|
||
|
],
|
||
|
};
|