From 1afd559330742542c03d6159e6d4e5edc11d7e59 Mon Sep 17 00:00:00 2001 From: Andrey Lushnikov Date: Wed, 11 May 2022 08:06:52 -0600 Subject: [PATCH] test: disable fission-related failure for firefox (#14097) --- tests/library/defaultbrowsercontext-2.spec.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tests/library/defaultbrowsercontext-2.spec.ts b/tests/library/defaultbrowsercontext-2.spec.ts index 93bda385bb..42da12dbfa 100644 --- a/tests/library/defaultbrowsercontext-2.spec.ts +++ b/tests/library/defaultbrowsercontext-2.spec.ts @@ -127,7 +127,8 @@ it('should create userDataDir if it does not exist', async ({ createUserDataDir, expect(fs.readdirSync(userDataDir).length).toBeGreaterThan(0); }); -it('should restore cookies from userDataDir', async ({ browserType, server, createUserDataDir, platform, channel, browserName }) => { +it('should restore cookies from userDataDir', async ({ browserType, server, createUserDataDir, platform, channel, browserName, headless }) => { + it.fixme(browserName === 'firefox' && !headless, 'https://github.com/microsoft/playwright/issues/12632'); it.fixme(platform === 'win32' && channel === 'chrome'); it.slow();