Skip to content

Commit 43e46c7

Browse files
lint fix
1 parent c57c6c1 commit 43e46c7

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

injected/integration-test/web-compat.spec.js

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -317,9 +317,14 @@ test.describe('Permissions API', () => {
317317
const initialDescriptorSerialization = await page.evaluate(checkObjectDescriptorIsNotPresent);
318318
expect(initialDescriptorSerialization).toEqual(true);
319319
// Remove permissions API without enabling webCompat feature
320-
await gotoAndWait(page, '/blank.html', { site: { enabledFeatures: [] } }, `
320+
await gotoAndWait(
321+
page,
322+
'/blank.html',
323+
{ site: { enabledFeatures: [] } },
324+
`
321325
Object.defineProperty(window.navigator, 'permissions', { writable: true, value: undefined })
322-
`);
326+
`,
327+
);
323328
const noPermissions = await page.evaluate(checkForPermissions);
324329
expect(noPermissions).toEqual(false);
325330
});

0 commit comments

Comments
 (0)