We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9d8f7b6 commit ae0e6a6Copy full SHA for ae0e6a6
src/playwright-recorder.ts
@@ -12,7 +12,7 @@ const escapeSequenceRegex = new RegExp(
12
13
export function playwrightRecorder() {
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'), {
+ const ws = fs.createWriteStream(path.join(process.cwd(), 'console2.log'), {
16
flags: 'w+',
17
mode: 0o644,
18
});
@@ -30,8 +30,8 @@ export function playwrightRecorder() {
30
]);
31
32
child.stdout.pipe(stripAsciiTransform).pipe(process.stdout);
33
- //child.stdout.pipe(stripAsciiTransform).pipe(ws);
34
child.stderr.pipe(process.stderr);
+ //child.stdout.pipe(ws);
35
//child.stderr.pipe(ws);
36
37
child.on('exit', (exitCode) => {
0 commit comments