Skip to content

Commit ae0e6a6

Browse files
committed
test output file
1 parent 9d8f7b6 commit ae0e6a6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/playwright-recorder.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ const escapeSequenceRegex = new RegExp(
1212

1313
export function playwrightRecorder() {
1414
// 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'), {
1616
flags: 'w+',
1717
mode: 0o644,
1818
});
@@ -30,8 +30,8 @@ export function playwrightRecorder() {
3030
]);
3131

3232
child.stdout.pipe(stripAsciiTransform).pipe(process.stdout);
33-
//child.stdout.pipe(stripAsciiTransform).pipe(ws);
3433
child.stderr.pipe(process.stderr);
34+
//child.stdout.pipe(ws);
3535
//child.stderr.pipe(ws);
3636

3737
child.on('exit', (exitCode) => {

0 commit comments

Comments
 (0)