Skip to content

Commit fa227f1

Browse files
authoredMar 18, 2025··
First attempt at configuring test coverage thresholds (#203)
1 parent 6bdd3d7 commit fa227f1

5 files changed

+56
-86
lines changed
 

‎jest.config.js

+46-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,49 @@
1+
const _baseConfig = (project, testExtension) => ({
2+
displayName: project,
3+
roots: ['<rootDir>'],
4+
5+
testMatch: [`**/*.test.${testExtension}`],
6+
testPathIgnorePatterns: ['/node_modules/', '/e2e/'],
7+
8+
transform: {
9+
'^.+\\.(js|ts|tsx)$': [
10+
'ts-jest',
11+
{
12+
tsconfig: project === 'react' ? ({ esModuleInterop: true }) : false,
13+
isolatedModules: project === 'react',
14+
},
15+
],
16+
},
17+
transformIgnorePatterns: ['/node_modules/(?!(@vscode/webview-ui-toolkit/|@microsoft/|exenv-es6/))'],
18+
19+
collectCoverage: true,
20+
collectCoverageFrom: [
21+
`src/**/*.${testExtension}`,
22+
'!src/**/*.d.ts',
23+
'!src/**/*.{spec,test}.{ts,tsx,js,jsx}', // Exclude test files
24+
],
25+
coverageDirectory: `coverage/${project}`,
26+
coverageReporters: ['json', 'lcov', 'text-summary', 'clover'],
27+
28+
coverageThreshold: {
29+
global: testExtension === 'ts' ? {
30+
statements: 20,
31+
branches: 7,
32+
functions: 7,
33+
lines: 20,
34+
} : /* tsx */{
35+
statements: 0,
36+
branches: 0,
37+
functions: 0,
38+
lines: 0,
39+
},
40+
},
41+
});
42+
143
module.exports = {
2-
projects: ['<rootDir>/jest.react.config.js', '<rootDir>/jest.unit.config.js'],
44+
projects: ['<rootDir>/jest.*.config.js'],
345
verbose: true,
46+
47+
// custom exports for individual projects
48+
_baseConfig,
449
};

‎jest.react.config.js

+5-23
Original file line numberDiff line numberDiff line change
@@ -1,26 +1,8 @@
1+
const { _baseConfig } = require('./jest.config');
2+
13
module.exports = {
2-
displayName: 'react',
3-
roots: ['<rootDir>'],
4-
testMatch: ['**/react/**/*.test.+(ts|tsx)'],
5-
transform: {
6-
'^.+\\.(min.js|js|ts|tsx)$': [
7-
'ts-jest',
8-
{
9-
tsconfig: 'tsconfig.react.json',
10-
isolatedModules: true,
11-
},
12-
],
13-
},
14-
transformIgnorePatterns: ['/node_modules/(?!(@vscode/webview-ui-toolkit/|@microsoft/|exenv-es6/))'],
15-
testPathIgnorePatterns: ['/node_modules/', '/e2e/', '!/src/react/'],
16-
setupFilesAfterEnv: ['<rootDir>/setupTestsReact.js'],
4+
..._baseConfig('react', 'tsx'),
5+
176
testEnvironment: 'jsdom',
18-
collectCoverage: true,
19-
collectCoverageFrom: [
20-
'src/react/**/*.{ts,tsx}',
21-
'!src/**/*.d.ts',
22-
'!src/**/*.{spec,test}.{ts,tsx,js,jsx}', // Exclude test files
23-
],
24-
coverageDirectory: 'coverage/react',
25-
coverageReporters: ['json', 'lcov', 'text-summary', 'clover'],
7+
setupFilesAfterEnv: ['<rootDir>/setupTestsReact.js'],
268
};

‎jest.unit.config.js

+4-22
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,7 @@
1+
const { _baseConfig } = require('./jest.config');
2+
13
module.exports = {
2-
displayName: 'unit',
3-
roots: ['<rootDir>'],
4-
testMatch: ['**/test/**/*.+(ts|ts|js)', '**/?(*.)+(spec|test).+(ts|ts|js)'],
5-
transform: {
6-
'^.+\\.(min.js|ts|tsx)$': [
7-
'ts-jest',
8-
{
9-
tsconfig: 'tsconfig.json',
10-
},
11-
],
12-
},
13-
transformIgnorePatterns: ['/node_modules/'],
14-
testPathIgnorePatterns: ['/node_modules/', '/e2e/', '/src/react/'],
4+
..._baseConfig('unit', 'ts'),
5+
156
setupFilesAfterEnv: ['<rootDir>/setupTests.js'],
16-
collectCoverage: true,
17-
collectCoverageFrom: [
18-
'src/**/*.{ts,tsx}',
19-
'!src/**/*.d.ts',
20-
'!src/**/*.{spec,test}.{ts,tsx,js,jsx}', // Exclude test files
21-
'!src/react/**/*.{ts,tsx}',
22-
],
23-
coverageDirectory: 'coverage/unit',
24-
coverageReporters: ['json', 'lcov', 'text-summary', 'clover'],
257
};

‎tsconfig.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
"noUnusedLocals": true,
2626
"typeRoots": ["node_modules/@types", "src/typings/"],
2727
},
28-
"include": ["**/src/**/*", "**/test/**/*", "webpack.*.js", "jest.config.js", "jest.unit.config.js", "jest.react.config.js", "**/stories/**/*", "e2e/**/*"],
28+
"include": ["**/src/**/*", "webpack.*.js", "e2e/**/*"],
2929
"exclude": [
3030
"out",
3131
"node_modules",

‎tsconfig.react.json

-39
This file was deleted.

0 commit comments

Comments
 (0)
Please sign in to comment.