1
0
mirror of https://github.com/Unleash/unleash.git synced 2025-09-15 17:50:48 +02:00

fix: add coverage

This commit is contained in:
Fredrik Oseberg 2021-02-11 15:11:28 +01:00 committed by Christopher Kolstad
parent 041a378286
commit 5ab81c2bcd
No known key found for this signature in database
GPG Key ID: 559ACB0E3DB5538A
4 changed files with 5 additions and 4 deletions

View File

@ -44,8 +44,7 @@
"nyc": { "nyc": {
"all": true, "all": true,
"include": [ "include": [
"bin/**/*.js", "dist/**/*.js"
"lib/**/*.js"
] ]
}, },
"ava": { "ava": {
@ -55,7 +54,7 @@
"!**/helpers/**/*", "!**/helpers/**/*",
"!**/fixtures/**/*" "!**/fixtures/**/*"
], ],
"snapshotDir": "./src/test/snapshots" "snapshotDir": "snapshots"
}, },
"dependencies": { "dependencies": {
"async": "^3.1.0", "async": "^3.1.0",

View File

@ -76,6 +76,8 @@
"test/fixtures", "test/fixtures",
"src/binver-dev.js", "src/binver-dev.js",
"server.js", "server.js",
"dist" "dist",
"snapshots",
"coverage"
] ]
} }