forked from ant-design/ant-design-mobile
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.jest.web.js
37 lines (35 loc) · 901 Bytes
/
.jest.web.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
const libDir = process.env.LIB_DIR;
const transformIgnorePatterns = [
'/dist/',
'node_modules\/[^/]+?\/(?!es\/)', // Ignore modules without es dir
];
module.exports = {
moduleFileExtensions: [
'web.tsx',
'web.js',
'ts',
'tsx',
'js',
'jsx',
'json',
'md',
],
testPathIgnorePatterns: [
'/node_modules/',
'_site',
'site'
],
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',
'\\.svg$': '<rootDir>/tests/imageStub.js',
},
testRegex: libDir === 'dist' ? 'demo\\.test\\.web\\.js$' : '.*\\.test\\.web\\.js$',
collectCoverageFrom: [
'components/**/*.web.{ts,tsx}',
'!components/*/style/index.tsx',
],
transformIgnorePatterns,
testEnvironment: 'jsdom',
};