test: skip should capture canvas changes on macos <= 11 (#16182)
This commit is contained in:
parent
d5bc5ee6f7
commit
bdba9dbaf9
|
|
@ -231,7 +231,7 @@ it.describe('page screenshot', () => {
|
||||||
});
|
});
|
||||||
|
|
||||||
it('should capture canvas changes', async ({ page, isElectron, browserName, isMac }) => {
|
it('should capture canvas changes', async ({ page, isElectron, browserName, isMac }) => {
|
||||||
it.fixme(browserName === 'webkit' && isMac && parseInt(os.release(), 10) < 20, 'https://github.com/microsoft/playwright/issues/8796');
|
it.fixme(browserName === 'webkit' && isMac && parseInt(os.release(), 10) < 21, 'https://github.com/microsoft/playwright/issues/8796,https://github.com/microsoft/playwright/issues/16180');
|
||||||
it.skip(isElectron);
|
it.skip(isElectron);
|
||||||
await page.goto('data:text/html,<canvas></canvas>');
|
await page.goto('data:text/html,<canvas></canvas>');
|
||||||
await page.evaluate(() => {
|
await page.evaluate(() => {
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue