loom/config/jest.test.config.json

22 lines
329 B
JSON

{
"rootDir": "../",
"collectCoverageFrom": [
"./src/**/*.js"
],
"coverageReporters": [
"json",
"json-summary",
"lcov",
"text",
"clover"
],
"coverageThreshold": {
"global": {
"branches" : 100,
"functions" : 100,
"lines" : 100,
"statements" : 100
}
}
}