Skip to content
Closed
Prev Previous commit
Next Next commit
run prettier
  • Loading branch information
JonasBa committed Jul 18, 2024
commit 605903841e9acea10cc70e4710bb65e2453521cc
4 changes: 3 additions & 1 deletion packages/rrweb/test/benchmark/dom-mutation.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,9 @@ describe('benchmark: mutation observer', () => {
const loadPage = async () => {
if ('html' in suite) {
await page.goto('about:blank');
const code = fs.readFileSync(path.resolve(__dirname, '../../dist/rrweb.umd.cjs')).toString()
const code = fs
.readFileSync(path.resolve(__dirname, '../../dist/rrweb.umd.cjs'))
.toString();
await page.setContent(`<html>
<script>
${code.toString()}
Expand Down