From d73c0ba6892e22caa52a3b647ec4fd7144b8f186 Mon Sep 17 00:00:00 2001 From: Yury Semikhatsky Date: Fri, 9 Aug 2024 15:30:56 -0700 Subject: [PATCH] test: skip COOP navigation test on wk linux (#32108) Reference: https://github.com/microsoft/playwright/issues/32107 --- tests/page/page-goto.spec.ts | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/tests/page/page-goto.spec.ts b/tests/page/page-goto.spec.ts index 830a25e203..79107c0d21 100644 --- a/tests/page/page-goto.spec.ts +++ b/tests/page/page-goto.spec.ts @@ -179,7 +179,10 @@ it('should work with Cross-Origin-Opener-Policy after redirect', async ({ page, expect(firstRequest.url()).toBe(server.PREFIX + '/redirect'); }); -it('should properly cancel Cross-Origin-Opener-Policy navigation', async ({ page, server }) => { +it('should properly cancel Cross-Origin-Opener-Policy navigation', { + annotation: { type: 'issue', description: 'https://github.com/microsoft/playwright/issues/32107' }, +}, async ({ page, server, browserName, isLinux }) => { + it.fixme(browserName === 'webkit' && isLinux, 'Started failing after https://commits.webkit.org/281488@main'); server.setRoute('/empty.html', (req, res) => { res.setHeader('Cross-Origin-Opener-Policy', 'same-origin'); res.end();