Skip to content

Commit 50f25fc

Browse files
authored
chore(html): fix extraneous doublequote in payload (microsoft#36796)
1 parent 18f147a commit 50f25fc

File tree

1 file changed

+1
-1
lines changed
  • packages/playwright/src/reporters

1 file changed

+1
-1
lines changed

packages/playwright/src/reporters/html.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -381,7 +381,7 @@ class HtmlBuilder {
381381
.pipe(fs.createWriteStream(filePath, { flags: 'a' })).on('close', f);
382382
});
383383
});
384-
fs.appendFileSync(filePath, '"</script>');
384+
fs.appendFileSync(filePath, '</script>');
385385
}
386386

387387
private _addDataFile(fileName: string, data: any) {

0 commit comments

Comments
 (0)