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 588b315 commit a0b846eCopy full SHA for a0b846e
src/playwright-recorder.ts
@@ -15,7 +15,7 @@ export function playwrightRecorder() {
15
if (!fs.existsSync(assetsPath)) {
16
fs.mkdirSync(assetsPath);
17
}
18
- const ws = fs.createWriteStream(path.join(assetsPath, 'console.log'), {
+ const ws = fs.createWriteStream(path.join(assetsPath, 'console2.log'), {
19
flags: 'w+',
20
mode: 0o644,
21
});
@@ -28,7 +28,7 @@ export function playwrightRecorder() {
28
29
const [nodeBin] = process.argv;
30
const child = childProcess.spawn(nodeBin, [
31
- path.join(__dirname, 'playwright-runner.js'),
+ path.join(__dirname, 'playwright-runer.js'),
32
...process.argv.slice(2),
33
]);
34
0 commit comments