test: update NYC configuration

This commit is contained in:
Karl-Philipp Wulfert
2019-06-28 12:42:45 +02:00
parent 13dae1fb06
commit b6272e9229

View File

@@ -72,27 +72,30 @@
"typescript": "3.5.2" "typescript": "3.5.2"
}, },
"nyc": { "nyc": {
"check-coverage": true, "all": true,
"per-file": true,
"lines": 95,
"statements": 95,
"functions": 95,
"branches": 85, "branches": 85,
"check-coverage": true,
"exclude": [],
"extension": [
".ts"
],
"functions": 95,
"include": [ "include": [
"src/protocol/route.ts", "src/protocol/route.ts",
"src/things/abstract/thing.ts", "src/things/abstract/thing.ts",
"src/translator.ts", "src/translator.ts",
"src/guards.ts" "src/guards.ts"
], ],
"exclude": [], "lines": 95,
"extension": [ "per-file": true,
".ts"
],
"reporter": [ "reporter": [
"html", "html",
"text-summary" "text-summary"
], ],
"all": true "require": [
"ts-node/register"
],
"statements": 95
}, },
"openstappsConfiguration": { "openstappsConfiguration": {
"hasCli": false, "hasCli": false,