From b330a94d117f48837c8dfba9a5b03ce02ef1cfdb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=A9r=C3=A9my=20Lal?= Date: Sat, 30 Apr 2022 20:06:37 +0200 Subject: [PATCH] tap: protect getCacheDir test with --no-cov Tap might have coverage on by default, which nukes that test. --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index f878914..fdb13dd 100644 --- a/package.json +++ b/package.json @@ -6,7 +6,7 @@ "scripts": { "bench": "bench/run.sh", "eslint": "eslint --max-warnings=0 .", - "tap": "tap test/*-test.js", + "tap": "tap --no-cov test/*-test.js", "test": "npm run tap", "posttest": "npm run eslint" },