4 Star 26 Fork 19

open-hand / choerodon-ui

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
.jest.js 1.98 KB
一键复制 编辑 原始数据 按行查看 历史
const libDir = process.env.LIB_DIR;
const transformIgnorePatterns = [
'/dist/',
'node_modules/[^/]+?/(?!(es|node_modules)/)', // Ignore modules without es dir
];
module.exports = {
verbose: true,
testURL: 'http://localhost',
setupFiles: ['./tests/setup.js'],
moduleFileExtensions: ['ts', 'tsx', 'js', 'jsx', 'json', 'md'],
modulePathIgnorePatterns: ['/_site/'],
moduleNameMapper: { '\\.(css|scss|less)$': 'identity-obj-proxy' },
testPathIgnorePatterns: ['/node_modules/', 'dekko', 'node'],
transform: {
'\\.tsx?$': './tools/jest/codePreprocessor',
'\\.jsx?$': './tools/jest/codePreprocessor',
'\\.md$': './tools/jest/demoPreprocessor',
},
testRegex: libDir === 'dist' ? 'demo\\.test\\.js$' : '.*\\.test\\.js$',
collectCoverageFrom: [
'components/**/*.{ts,tsx}',
'!components/*/style/index.tsx',
'!components/style/index.tsx',
'!components/*/locale/index.tsx',
'!components/*/__tests__/**/type.tsx',
'!components/**/*/interface.{ts,tsx}',
'components-pro/**/*.{ts,tsx}',
'!components-pro/*/style/index.tsx',
'!components-pro/style/index.tsx',
'!components-pro/*/locale/index.tsx',
'!components-pro/*/__tests__/**/type.tsx',
'!components-pro/**/*/interface.{ts,tsx}',
'components-dataset/**/*.{ts,tsx}',
'components-shared/**/*.{ts,tsx}',
'!components-dataset/*/__tests__/**/type.tsx',
'!components-dataset/**/*/interface.{ts,tsx}',
'!components/style/v2-compatible-reset.tsx',
'!components/responsive/*.{ts,tsx}',
'!components/configure/*.{ts,tsx}',
'!components/align/*.{ts,tsx}',
'!components-pro/code-area/lint/*.{ts,tsx}',
'!components-pro/_util/*.{ts,tsx}',
],
transformIgnorePatterns,
snapshotSerializers: ['enzyme-to-json/serializer'],
globals: {
'ts-jest': {
tsConfig: './tsconfig.test.json',
},
},
cacheDirectory: `./.jest-cache/${libDir || 'default'}`,
// here is to make coverage html build in _site/coverage
// coverageDirectory: './_site/coverage',
};
JavaScript
1
https://gitee.com/open-hand/choerodon-ui.git
git@gitee.com:open-hand/choerodon-ui.git
open-hand
choerodon-ui
choerodon-ui
master

搜索帮助