mirror of
https://github.com/all-contributors/cli.git
synced 2025-01-09 21:46:29 +00:00
482a8ab956
* codemod * move files * install kcd-scripts and set up some stuff * make everything work * update md files * change a few things
12 lines
225 B
JavaScript
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,
|
|
},
|
|
},
|
|
})
|