nyc --check-coverage --lines 90 --functions 90 --branches 50 -r html -r clover -r text npm run test
https://github.com/istanbuljs/nyc
In package.json
{
"jest": {
"coverageThreshold": {
"global": {
"branches": 50,
"functions": 50,
"lines": 50,
"statements": 50
}
}
}
}
https://facebook.github.io/jest/docs/configuration.html
nosetests test --with-coverage --cover-html --cover-html --cover-min-percentage=85
npm test -- --coverage