diff --git a/.gitignore b/.gitignore index c896769..2b54780 100644 --- a/.gitignore +++ b/.gitignore @@ -13,3 +13,4 @@ tmp/**/* .idea .idea/**/* coverage +.tap/ diff --git a/package.json b/package.json index c991b89..981110d 100644 --- a/package.json +++ b/package.json @@ -32,7 +32,7 @@ "scripts": { "prepublishOnly": "npm run build", "build": "rollup -c", - "test": "tap test/*.js", + "test": "tap --disable-coverage --allow-empty-coverage test/*.js", "lint": "eslint . --ignore-pattern '/dist/'", "lint:fix": "eslint --fix . --ignore-pattern '/dist/'" }, @@ -52,6 +52,6 @@ "eslint-plugin-prettier": "4.2.1", "prettier": "2.8.8", "rollup": "4.14.3", - "tap": "15.2.3" + "tap": "18.7.2" } }