From 32b51a583e3768f7a61535732d9e236992ba88eb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C3=ABl=20Zasso?= Date: Sun, 29 Dec 2024 10:19:44 +0100 Subject: [PATCH] [Tests] fix posttest script on Windows Use double quotes in cmd argument. --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index b52d071..05adedf 100644 --- a/package.json +++ b/package.json @@ -38,7 +38,7 @@ "tests-only": "tape test/*.js", "pretest": "npm run lint", "test": "npm run --silent tests-only", - "posttest": "npm run test:multirepo && npx npm@'>= 10.2' audit --production", + "posttest": "npm run test:multirepo && npx npm@\">= 10.2\" audit --production", "test:multirepo": "cd ./test/resolver/multirepo && npm install && npm test" }, "license": "MIT",