Fix lint
This commit is contained in:
parent
c0c1f0cfe0
commit
64639d91c4
|
|
@ -435,11 +435,12 @@ it('should not auto play audio', {
|
|||
description: 'https://github.com/microsoft/playwright/issues/33590'
|
||||
}
|
||||
}, async ({ page }) => {
|
||||
await page.route('**/*', async (route) => {
|
||||
route.fulfill({
|
||||
await page.route('**/*', async route => {
|
||||
await route.fulfill({
|
||||
status: 200,
|
||||
contentType: 'text/html',
|
||||
body: `<script>
|
||||
body: `
|
||||
<script>
|
||||
async function onLoad() {
|
||||
const log = document.getElementById('log');
|
||||
const audioContext = new AudioContext();
|
||||
|
|
|
|||
Loading…
Reference in a new issue