test: enable some of the previously disabled tests (#22047)
Fixes https://github.com/microsoft/playwright/issues/21549
This commit is contained in:
parent
bb6b4425f7
commit
0b170ddc12
|
|
@ -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');
|
||||
|
|
|
|||
|
|
@ -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 });
|
||||
|
|
|
|||
Loading…
Reference in a new issue