diff --git a/.gitignore b/.gitignore index 2b82db6..132b146 100644 --- a/.gitignore +++ b/.gitignore @@ -4,3 +4,4 @@ sandbox.js config.json package-lock.json neofeed +.tap diff --git a/package.json b/package.json index 4616ae1..fabfd81 100644 --- a/package.json +++ b/package.json @@ -26,7 +26,7 @@ "minimatch": "^9.0.0", "npm-run-all": "^4.1.5", "standard": "^17.0.0", - "tap": "^16.0.0" + "tap": "^18.1.5" }, "homepage": "https://github.com/bcomnes/async-neocities", "keywords": [ @@ -46,12 +46,21 @@ "test": "run-s test:*", "test:deps": "dependency-check . --no-dev --no-peer", "test:standard": "standard", - "test:tape": "tap --no-check-coverage", + "test:tape": "tap", "version": "auto-changelog -p --template keepachangelog auto-changelog --breaking-pattern 'BREAKING CHANGE:' && git add CHANGELOG.md" }, "standard": { "ignore": [ "dist" ] + }, + "tap": { + "serial": [], + "typecheck": false, + "allow-incomplete-coverage": true, + "coverage-report": [ + "text", + "lcovonly" + ] } }