From 621c702ff81f27f64ab4d7076b0c3402567e1585 Mon Sep 17 00:00:00 2001 From: Daniel Imms <2193314+Tyriar@users.noreply.github.com> Date: Thu, 3 Oct 2024 20:10:10 -0700 Subject: [PATCH] Forward integration test exit code to running proc Fixes #5179 --- bin/test_integration.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/bin/test_integration.js b/bin/test_integration.js index 936467cc..00e5b57c 100644 --- a/bin/test_integration.js +++ b/bin/test_integration.js @@ -62,6 +62,8 @@ async function run() { console.error(run.error); process.exit(run.status ?? -1); } + + process.exit(run.status); } } run();