Skip to content

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
tianfeng92 committed Aug 6, 2024
1 parent ad27faa commit 286c6c1
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/playwright-recorder.ts
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,9 @@ export function playwrightRecorder() {
]);

child.stdout.pipe(stripAsciiTransform).pipe(process.stdout);
child.stderr.pipe(process.stderr);
child.stdout.pipe(stripAsciiTransform).pipe(ws);
child.stderr.pipe(process.stderr);
child.stderr.pipe(ws);

child.on('exit', (exitCode) => {
ws.end();
Expand Down

0 comments on commit 286c6c1

Please sign in to comment.