mirror of
https://github.com/all-contributors/cli.git
synced 2025-01-08 05:06:23 +00:00
2ade2d7fd1
* ci: fix build runner, ensure jest exits when async handles open * contributors add infra
13 lines
243 B
JavaScript
13 lines
243 B
JavaScript
const jestConfig = require('kcd-scripts/jest')
|
|
|
|
module.exports = Object.assign(jestConfig, {
|
|
coverageThreshold: {
|
|
global: {
|
|
branches: 50,
|
|
functions: 40,
|
|
lines: 50,
|
|
statements: 50,
|
|
},
|
|
},
|
|
forceExit: true
|
|
})
|