chore: test cleanup (#24211)

The functionality was fixed in
https://github.com/microsoft/playwright/pull/24201.

 Fixes #24201
This commit is contained in:
Yury Semikhatsky 2023-07-13 09:57:51 -07:00 committed by GitHub
parent b483bf9fcc
commit 15c6dad114
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -218,7 +218,7 @@ it('should add cookies from Set-Cookie header', async ({ context, page, server }
expect((await page.evaluate(() => document.cookie)).split(';').map(s => s.trim()).sort()).toEqual(['foo=bar', 'session=value']);
});
it('should preserve cookie order from Set-Cookie header', async ({ context, page, server, browserName, isLinux }) => {
it('should preserve cookie order from Set-Cookie header', async ({ context, page, server }) => {
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']);