From 2538e20c4df8ce23fcbf8a332615ca4bf7f10c90 Mon Sep 17 00:00:00 2001 From: Jeremy Apthorp Date: Thu, 20 Sep 2018 13:43:33 -0700 Subject: [PATCH] test: inherit stdio when 'npm install'ing spec deps (#14740) --- script/spec-runner.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/script/spec-runner.js b/script/spec-runner.js index 305e1500a8f1..079f19d0752d 100755 --- a/script/spec-runner.js +++ b/script/spec-runner.js @@ -26,7 +26,8 @@ getSpecHash().then(([currentSpecHash, currentSpecInstallHash]) => { npm_config_nodedir: path.resolve(BASE, `out/${utils.OUT_DIR}/gen/node_headers`), npm_config_msvs_version: '2017' }), - cwd: path.resolve(__dirname, '../spec') + cwd: path.resolve(__dirname, '../spec'), + stdio: 'inherit' }) if (out.status !== 0) { console.error('Failed to npm install in the spec folder')