Skip to content

Commit ad27faa

Browse files
committed
also strip process.stdout
1 parent 0b94e23 commit ad27faa

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/playwright-recorder.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,10 +29,9 @@ export function playwrightRecorder() {
2929
...process.argv.slice(2),
3030
]);
3131

32-
child.stdout.pipe(process.stdout);
32+
child.stdout.pipe(stripAsciiTransform).pipe(process.stdout);
3333
child.stderr.pipe(process.stderr);
3434
child.stdout.pipe(stripAsciiTransform).pipe(ws);
35-
child.stderr.pipe(stripAsciiTransform).pipe(ws);
3635

3736
child.on('exit', (exitCode) => {
3837
ws.end();

0 commit comments

Comments
 (0)