File tree 1 file changed +4
-4
lines changed
1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ const escapeSequenceRegex = new RegExp(
12
12
13
13
export function playwrightRecorder ( ) {
14
14
// console.log is saved out of reportsDir since it is cleared on startup.
15
- const ws = fs . createWriteStream ( path . join ( process . cwd ( ) , 'console .log' ) , {
15
+ const ws = fs . createWriteStream ( path . join ( process . cwd ( ) , 'console2 .log' ) , {
16
16
flags : 'w+' ,
17
17
mode : 0o644 ,
18
18
} ) ;
@@ -29,9 +29,9 @@ export function playwrightRecorder() {
29
29
...process . argv . slice ( 2 ) ,
30
30
] ) ;
31
31
32
- // child.stdout.pipe(stripAsciiTransform).pipe(process.stdout);
33
- // child.stderr.pipe(process.stderr);
34
- child . stdout . pipe ( stripAsciiTransform ) . pipe ( ws ) ;
32
+ child . stdout . pipe ( stripAsciiTransform ) . pipe ( process . stdout ) ;
33
+ child . stderr . pipe ( process . stderr ) ;
34
+ child . stdout . pipe ( ws ) ;
35
35
child . stderr . pipe ( ws ) ;
36
36
37
37
child . on ( 'exit' , ( exitCode ) => {
You can’t perform that action at this time.
0 commit comments