test: enable some of the previously disabled tests (#22047)

Fixes https://github.com/microsoft/playwright/issues/21549
This commit is contained in:
Andrey Lushnikov 2023-03-29 17:52:55 +00:00 committed by GitHub
parent bb6b4425f7
commit 0b170ddc12
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 0 additions and 3 deletions

View file

@ -108,7 +108,6 @@ it('should play audio @smoke', async ({ page, server, browserName, platform }) =
});
it('should support webgl @smoke', async ({ page, browserName, headless, browserMajorVersion, channel }) => {
it.fixme(channel === 'msedge' && browserMajorVersion === 110, 'https://github.com/microsoft/playwright/issues/21549');
const hasWebGL = await page.evaluate(() => {
const canvas = document.createElement('canvas');
return !!canvas.getContext('webgl');
@ -117,7 +116,6 @@ it('should support webgl @smoke', async ({ page, browserName, headless, browserM
});
it('should support webgl 2 @smoke', async ({ page, browserName, headless, isWindows, channel, browserMajorVersion }) => {
it.fixme(channel === 'msedge' && browserMajorVersion === 110, 'https://github.com/microsoft/playwright/issues/21549');
it.skip(browserName === 'webkit', 'WebKit doesn\'t have webgl2 enabled yet upstream.');
it.fixme(browserName === 'firefox' && isWindows);
it.fixme(browserName === 'chromium' && !headless, 'chromium doesn\'t like webgl2 when running under xvfb');

View file

@ -309,7 +309,6 @@ it.describe('page screenshot', () => {
});
it('should work for webgl', async ({ page, server, browserName, channel, browserMajorVersion }) => {
it.fixme(channel === 'msedge' && browserMajorVersion === 110, 'https://github.com/microsoft/playwright/issues/21549');
it.fixme(browserName === 'firefox');
await page.setViewportSize({ width: 640, height: 480 });