Skip to content

Commit

Permalink
fix: remove redundant line break
Browse files Browse the repository at this point in the history
  • Loading branch information
zxch3n committed Mar 29, 2022
1 parent c0e70f9 commit 0c992af
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/pure/runner.ts
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ export class TestRunner {
});

for await (const line of chunksToLinesAsync(child.stdout)) {
log(line + "\r\n");
log(line.trimEnd() + "\r\n");
outputs.push(line);
}
} catch (e) {
Expand Down

0 comments on commit 0c992af

Please sign in to comment.