mirror of
https://github.com/Keeper-Security/harness-integration.git
synced 2026-06-04 18:23:51 +08:00
21 lines
405 B
JavaScript
21 lines
405 B
JavaScript
module.exports = {
|
|
testEnvironment: 'node',
|
|
collectCoverageFrom: [
|
|
'src/**/*.js',
|
|
'!src/**/*.test.js',
|
|
],
|
|
coverageThreshold: {
|
|
global: {
|
|
branches: 100,
|
|
functions: 100,
|
|
lines: 100,
|
|
statements: 100,
|
|
},
|
|
},
|
|
testMatch: [
|
|
'**/__tests__/**/*.js',
|
|
'**/*.test.js',
|
|
],
|
|
verbose: true,
|
|
};
|