This commit is contained in:
Jannis R 2023-09-25 14:04:06 +03:00
parent 02c781b180
commit ecc8fccc54
No known key found for this signature in database
GPG key ID: 0FE83946296A88A5
2 changed files with 12 additions and 2 deletions

2
.gitignore vendored
View file

@ -6,3 +6,5 @@ node_modules
npm-debug.log
package-lock.json
/.tap

View file

@ -69,7 +69,7 @@
"eslint": "^8.15.0",
"is-coordinates": "^2.0.2",
"is-roughly-equal": "^0.1.0",
"tap": "^16.2.0",
"tap": "^18.0.4",
"validate-fptf": "^3.0.0"
},
"scripts": {
@ -82,6 +82,14 @@
"prepublishOnly": "npm run lint && npm test"
},
"tap": {
"coverage": false
"disable-coverage": true,
"allow-empty-coverage": true,
"plugin": [
"!@tapjs/typescript",
"!@tapjs/mock",
"!@tapjs/snapshot",
"!@tapjs/intercept",
"!@tapjs/fixture"
]
}
}