all-contributors-cli/jest.config.js
Jake Bolam 2ade2d7fd1 ci: fix build runner, ensure jest exits when finished (#125)
* ci: fix build runner, ensure jest exits when async handles open

* contributors add infra
2018-12-28 23:57:08 -07:00

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
})