-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathjest.config.js
49 lines (43 loc) · 1.34 KB
/
jest.config.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
38
39
40
41
42
43
44
45
46
47
48
49
const _baseConfig = (project, testExtension) => ({
displayName: project,
roots: ['<rootDir>'],
testMatch: [`**/*.test.${testExtension}`],
testPathIgnorePatterns: ['/node_modules/', '/e2e/'],
transform: {
'^.+\\.(js|ts|tsx)$': [
'ts-jest',
{
tsconfig: project === 'react' ? ({ esModuleInterop: true }) : false,
isolatedModules: project === 'react',
},
],
},
transformIgnorePatterns: ['/node_modules/(?!(@vscode/webview-ui-toolkit/|@microsoft/|exenv-es6/))'],
collectCoverage: true,
collectCoverageFrom: [
`src/**/*.${testExtension}`,
'!src/**/*.d.ts',
'!src/**/*.{spec,test}.{ts,tsx,js,jsx}', // Exclude test files
],
coverageDirectory: `coverage/${project}`,
coverageReporters: ['json', 'lcov', 'text-summary', 'clover'],
coverageThreshold: {
global: testExtension === 'ts' ? {
statements: 21,
branches: 8,
functions: 8,
lines: 21,
} : /* tsx */{
statements: 0,
branches: 0,
functions: 0,
lines: 0,
},
},
});
module.exports = {
projects: ['<rootDir>/jest.*.config.js'],
verbose: true,
// custom exports for individual projects
_baseConfig,
};