node-environment
Version:
Inspect NODE_ENV environment variable
22 lines (21 loc) • 473 B
JavaScript
/*
* For a detailed explanation regarding each configuration property, visit:
* https://jestjs.io/docs/configuration
*/
module.exports = {
collectCoverage: true,
coverageDirectory: 'coverage',
coverageThreshold: {
global: {
statements: -5,
branches: 90,
lines: 95,
functions: 95,
},
},
setupFilesAfterEnv: ['jest-extended/all'],
watchPlugins: [
'jest-watch-typeahead/filename',
'jest-watch-typeahead/testname',
],
}