tests: mark certain tests as failing on Firefox Headed (#14286)

References #14285
This commit is contained in:
Andrey Lushnikov 2022-05-19 10:06:31 -06:00 committed by GitHub
parent 98469d70c4
commit 34429a222e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 5 additions and 1 deletions

View file

@ -107,7 +107,7 @@ it('should support webgl @smoke', async ({ page, browserName, headless }) => {
it('should support webgl 2 @smoke', async ({ page, browserName, headless }) => {
it.skip(browserName === 'webkit', 'WebKit doesn\'t have webgl2 enabled yet upstream.');
it.fixme(browserName === 'firefox' && headless);
it.fixme(browserName === 'firefox');
it.fixme(browserName === 'chromium' && !headless, 'chromium doesn\'t like webgl2 when running under xvfb');
const hasWebGL2 = await page.evaluate(() => {

View file

@ -97,6 +97,7 @@ it('should accept userDataDir', async ({ createUserDataDir, browserType }) => {
});
it('should restore state from userDataDir', async ({ browserType, server, createUserDataDir, isMac, browserName }) => {
it.fixme(browserName === 'firefox', 'https://github.com/microsoft/playwright/issues/12632');
it.slow();
const userDataDir = await createUserDataDir();

View file

@ -22,6 +22,9 @@ import { parseTrace } from '../config/utils';
test.skip(({ trace }) => trace === 'on');
// https://github.com/microsoft/playwright/issues/14285
test.fixme(({ browserName, headless }) => browserName === 'firefox' && !headless);
test('should collect trace with resources, but no js', async ({ context, page, server }, testInfo) => {
await context.tracing.start({ screenshots: true, snapshots: true });
await page.goto(server.PREFIX + '/frames/frame.html');