summaryrefslogtreecommitdiff
path: root/integration-tests/test-helper.js
diff options
context:
space:
mode:
Diffstat (limited to 'integration-tests/test-helper.js')
-rw-r--r--integration-tests/test-helper.js5
1 files changed, 5 insertions, 0 deletions
diff --git a/integration-tests/test-helper.js b/integration-tests/test-helper.js
index 9526ea5f..e4d55631 100644
--- a/integration-tests/test-helper.js
+++ b/integration-tests/test-helper.js
@@ -258,6 +258,11 @@ export class TestRig {
result = filteredLines.join('\n');
}
+ // If we have stderr output, include that also
+ if (stderr) {
+ result += `\n\nStdErr:\n${stderr}`;
+ }
+
resolve(result);
} else {
reject(new Error(`Process exited with code ${code}:\n${stderr}`));