From e0e4b48df61443e30d45f28022e073dcebaad582 Mon Sep 17 00:00:00 2001 From: Max Schmitt Date: Wed, 1 Sep 2021 23:20:57 +0200 Subject: [PATCH] test: skip security details on WK/Win --- tests/har.spec.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/har.spec.ts b/tests/har.spec.ts index 68291b35b7..1e752a7536 100644 --- a/tests/har.spec.ts +++ b/tests/har.spec.ts @@ -473,6 +473,7 @@ it('should return server address directly from response', async ({ page, server it('should return security details directly from response', async ({ contextFactory, httpsServer, browserName, platform }) => { it.fail(browserName === 'webkit' && platform === 'linux', 'https://github.com/microsoft/playwright/issues/6759'); + it.fail(browserName === 'webkit' && platform === 'win32'); const context = await contextFactory({ ignoreHTTPSErrors: true }); const page = await context.newPage();