From 5de7e64f3a435d9b595b7d1c84336cb76ab17eda Mon Sep 17 00:00:00 2001 From: Ruy Adorno Date: Thu, 3 Dec 2020 12:13:08 -0500 Subject: [PATCH] build: fix make test-npm MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Fixes running npm tests with `make test-npm` PR-URL: https://github.com/nodejs/node/pull/36369 Reviewed-By: Colin Ihrig Reviewed-By: Richard Lau Reviewed-By: Michaƫl Zasso Reviewed-By: Rich Trott Reviewed-By: James M Snell Reviewed-By: Luigi Pinca --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 5bb5d7df5f87e2..46152bb45af57d 100644 --- a/Makefile +++ b/Makefile @@ -592,7 +592,7 @@ test-known-issues: all # Related CI job: node-test-npm test-npm: $(NODE_EXE) ## Run the npm test suite on deps/npm. - $(NODE) tools/test-npm-package --install --logfile=test-npm.tap deps/npm test-node + $(NODE) tools/test-npm-package --install --logfile=test-npm.tap deps/npm test test-npm-publish: $(NODE_EXE) npm_package_config_publishtest=true $(NODE) deps/npm/test/run.js