From 3ea6ec6e877221b1e3ff8c1473766286423586e2 Mon Sep 17 00:00:00 2001 From: Yury Semikhatsky Date: Fri, 21 Feb 2025 08:59:10 -0800 Subject: [PATCH] test: unskip "should preserve cookie order from Set-Cookie header" Fixes https://github.com/microsoft/playwright-browsers/issues/1512 --- tests/library/browsercontext-fetch.spec.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/tests/library/browsercontext-fetch.spec.ts b/tests/library/browsercontext-fetch.spec.ts index ff0c1e86a8..0dd5eaa156 100644 --- a/tests/library/browsercontext-fetch.spec.ts +++ b/tests/library/browsercontext-fetch.spec.ts @@ -281,7 +281,6 @@ it('should add cookies from Set-Cookie header', async ({ context, page, server } }); it('should preserve cookie order from Set-Cookie header', async ({ context, page, server, browserName, isLinux }) => { - it.fixme(browserName === 'webkit' && isLinux, 'https://github.com/microsoft/playwright-browsers/issues/1512'); it.info().annotations.push({ type: 'issue', description: 'https://github.com/microsoft/playwright/issues/23390' }); server.setRoute('/setcookie.html', (req, res) => { res.setHeader('Set-Cookie', ['cookie.0=foo', 'cookie.1=bar']);