Skip to content

Commit

Permalink
test: skip falky raw headers test in Chromium (#6721)
Browse files Browse the repository at this point in the history
  • Loading branch information
yury-s committed May 24, 2021
1 parent 88defbd commit 2e8d65e
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions tests/page/page-network-request.spec.ts
Expand Up @@ -83,6 +83,7 @@ it('should return headers', async ({page, server, browserName}) => {

it('should get the same headers as the server', async ({ page, server, browserName, platform }) => {
it.fail(browserName === 'webkit' && platform === 'win32', 'Curl does not show accept-encoding and accept-language');
it.fixme(browserName === 'chromium', 'Flaky, see https://github.com/microsoft/playwright/issues/6690');

let serverRequest;
server.setRoute('/empty.html', (request, response) => {
Expand Down

0 comments on commit 2e8d65e

Please sign in to comment.