Skip to content

Commit

Permalink
chore: fix typo in test name (#5217)
Browse files Browse the repository at this point in the history
  • Loading branch information
damner authored and mathiasbynens committed Dec 11, 2019
1 parent 80b5c44 commit 5e63254
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/page.spec.js
Expand Up @@ -217,7 +217,7 @@ module.exports.addTests = function({testRunner, expect, headless, puppeteer, CHR
await context.clearPermissionOverrides();
expect(await page.evaluate(() => window.events)).toEqual(['prompt', 'denied', 'granted', 'prompt']);
});
it('should isolate permissions between browser contexs', async({page, server, context, browser}) => {
it('should isolate permissions between browser contexts', async({page, server, context, browser}) => {
await page.goto(server.EMPTY_PAGE);
const otherContext = await browser.createIncognitoBrowserContext();
const otherPage = await otherContext.newPage();
Expand Down

0 comments on commit 5e63254

Please sign in to comment.