test: mark "should work for webgl" as fixme on webkit linux (#3674)

It sometimes fails all 3 retries.
This commit is contained in:
Dmitry Gozman 2020-08-28 12:05:01 -07:00 committed by GitHub
parent 90408aa4f4
commit 3d6051adb7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -214,7 +214,7 @@ it.skip(ffheadful)('should work for translateZ', async ({page, server, golden})
expect(screenshot).toMatchImage(golden('screenshot-translateZ.png'));
});
it.fixme(options.FIREFOX).flaky(options.WEBKIT && LINUX)('should work for webgl', async ({page, server, golden}) => {
it.fixme(options.FIREFOX || options.WEBKIT && LINUX)('should work for webgl', async ({page, server, golden}) => {
await page.setViewportSize({width: 640, height: 480});
await page.goto(server.PREFIX + '/screenshots/webgl.html');
const screenshot = await page.screenshot();