test: mark 'should fulfill with multiple set-cookie' as fixme on Electron

This commit is contained in:
Max Schmitt 2021-10-12 10:59:39 +02:00
parent cfe75fc755
commit 94680a702d

View File

@ -249,7 +249,8 @@ it('should fetch original request and fulfill', async ({ page, server, isElectro
expect(await page.title()).toEqual('Woof-Woof');
});
it('should fulfill with multiple set-cookie', async ({ page, server, browserName }) => {
it('should fulfill with multiple set-cookie', async ({ page, server, browserName, isElectron }) => {
it.fixme(isElectron, 'Electron 14+ is required');
it.fail(browserName === 'webkit', 'Response contained invalid HTTP headers');
const cookies = ['a=b', 'c=d'];
await page.route('**/empty.html', async route => {