test: disable fission-related failure for firefox (#14097)

This commit is contained in:
Andrey Lushnikov 2022-05-11 08:06:52 -06:00 committed by GitHub
parent b753ff8686
commit 1afd559330
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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();