tests: mark certain tests as failing on Firefox Headed (#14286)
References #14285
This commit is contained in:
parent
98469d70c4
commit
34429a222e
|
|
@ -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(() => {
|
||||
|
|
|
|||
|
|
@ -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();
|
||||
|
|
|
|||
|
|
@ -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');
|
||||
|
|
|
|||
Loading…
Reference in a new issue