This commit is contained in:
Andrey Lushnikov 2020-02-19 18:27:16 -08:00
parent fb810428ad
commit 8b361ee268

View file

@ -256,7 +256,7 @@ module.exports.describe = function({testRunner, expect, playwright, headless, FF
describe.skip(CHROMIUM || FFOX)('BrowserContext({locale})', function() {
it('should affect accept-language header', async({browser, server}) => {
const context = await browser.newContext({ locale: 'fr-CH' });
const page = await browser.newPage();
const page = await context.newPage();
const [request] = await Promise.all([
server.waitForRequest('/empty.html'),
page.goto(server.EMPTY_PAGE),