Skip to content

Commit 137254e

Browse files
committed
Prefix stdout and stderr output
1 parent 454912f commit 137254e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

scripts/run_tests_in_ci.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -73,10 +73,10 @@ const argv = yargs.options({
7373
const testProcess = spawn('yarn', ['--cwd', dir, scriptName]);
7474

7575
testProcess.childProcess.stdout.on('data', data => {
76-
testProcessOutput += data.toString();
76+
testProcessOutput += '[stdout]' + data.toString();
7777
});
7878
testProcess.childProcess.stderr.on('data', data => {
79-
testProcessOutput += data.toString();
79+
testProcessOutput += '[stderr]' + data.toString();
8080
});
8181

8282
await testProcess;

0 commit comments

Comments
 (0)