Skip to content

Commit

Permalink
Preserve output formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
bergie committed Sep 1, 2020
1 parent 9bda994 commit 3f7ab9c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions spec/protocol.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@ describe('FBP Protocol Compatibility', () => {
progProcess = spawn(prog, [
`--secret=${runtimeSecret}`,
]);
progProcess.stdout.on('data', d => console.log(d.toString()));
progProcess.stderr.on('data', d => console.log(d.toString()));
progProcess.stdout.pipe(process.stdout);
progProcess.stderr.pipe(process.stderr);
healthCheck(done);
});
after('stop runtime', (done) => {
Expand Down

0 comments on commit 3f7ab9c

Please sign in to comment.