From 3e730ab016de79a22af3e70667fffa28f968cde0 Mon Sep 17 00:00:00 2001 From: Shelley Vohr Date: Fri, 21 Oct 2022 02:13:59 -0700 Subject: [PATCH] test: exit properly when `node-spec-runner` validates specs (#36091) test: exit properly when node spec runner validates specs --- script/node-spec-runner.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/script/node-spec-runner.js b/script/node-spec-runner.js index 570a4d00dfe3..eea9c30760d4 100644 --- a/script/node-spec-runner.js +++ b/script/node-spec-runner.js @@ -67,6 +67,8 @@ async function main () { console.error(`Found ${missing.length} missing disabled specs: \n${missing.join('\n')}`); process.exit(1); } + + process.exit(0); } const options = args.default ? defaultOptions : getCustomOptions();