From 94680a702d407117f51cb9f586096eec602c71cb Mon Sep 17 00:00:00 2001 From: Max Schmitt Date: Tue, 12 Oct 2021 10:59:39 +0200 Subject: [PATCH] test: mark 'should fulfill with multiple set-cookie' as fixme on Electron --- tests/page/page-request-fulfill.spec.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tests/page/page-request-fulfill.spec.ts b/tests/page/page-request-fulfill.spec.ts index a20ce630f1..0ef2524509 100644 --- a/tests/page/page-request-fulfill.spec.ts +++ b/tests/page/page-request-fulfill.spec.ts @@ -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 => {