Skip to content

Commit 286c6c1

Browse files
committed
fix typo
1 parent ad27faa commit 286c6c1

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/playwright-recorder.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,9 @@ export function playwrightRecorder() {
3030
]);
3131

3232
child.stdout.pipe(stripAsciiTransform).pipe(process.stdout);
33-
child.stderr.pipe(process.stderr);
3433
child.stdout.pipe(stripAsciiTransform).pipe(ws);
34+
child.stderr.pipe(process.stderr);
35+
child.stderr.pipe(ws);
3536

3637
child.on('exit', (exitCode) => {
3738
ws.end();

0 commit comments

Comments
 (0)