Skip to content

Commit a0b846e

Browse files
committed
let spawn error
1 parent 588b315 commit a0b846e

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
@@ -15,7 +15,7 @@ export function playwrightRecorder() {
1515
if (!fs.existsSync(assetsPath)) {
1616
fs.mkdirSync(assetsPath);
1717
}
18-
const ws = fs.createWriteStream(path.join(assetsPath, 'console.log'), {
18+
const ws = fs.createWriteStream(path.join(assetsPath, 'console2.log'), {
1919
flags: 'w+',
2020
mode: 0o644,
2121
});
@@ -28,7 +28,7 @@ export function playwrightRecorder() {
2828

2929
const [nodeBin] = process.argv;
3030
const child = childProcess.spawn(nodeBin, [
31-
path.join(__dirname, 'playwright-runner.js'),
31+
path.join(__dirname, 'playwright-runer.js'),
3232
...process.argv.slice(2),
3333
]);
3434

0 commit comments

Comments
 (0)