openhab-vscode/serverJS/jest-unit.json

19 lines
317 B
JSON

{
"coverageThreshold": {
"global": {
"branches": 90,
"functions": 100,
"lines": 90,
"statements": 90
}
},
"testEnvironment": "node",
"collectCoverageFrom": [
"src/**/*.js",
"!__mocks__/**",
"!__tests__/**"
],
"testMatch": [
"**/__tests__/unit/**/*.js"
]
}