all-contributors-cli/jest.config.js
Kent C. Dodds 482a8ab956
chore: upgrade and migrate tooling stuff (#73)
* codemod

* move files

* install kcd-scripts and set up some stuff

* make everything work

* update md files

* change a few things
2017-11-22 11:09:06 -07:00

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