mirror of
https://github.com/all-contributors/cli.git
synced 2025-01-09 21:46:29 +00:00
13 lines
225 B
JavaScript
13 lines
225 B
JavaScript
|
const jestConfig = require('kcd-scripts/jest')
|
||
|
|
||
|
module.exports = Object.assign(jestConfig, {
|
||
|
coverageThreshold: {
|
||
|
global: {
|
||
|
branches: 50,
|
||
|
functions: 40,
|
||
|
lines: 50,
|
||
|
statements: 50,
|
||
|
},
|
||
|
},
|
||
|
})
|