This reverts commit02416877da. Since we landed3127571b24- we should revert this one as well.
This commit is contained in:
parent
bb2e9d1175
commit
3694c1422d
|
|
@ -280,13 +280,12 @@ it.describe('page screenshot', () => {
|
||||||
expect(screenshot).toMatchSnapshot('screenshot-clip-odd-size.png');
|
expect(screenshot).toMatchSnapshot('screenshot-clip-odd-size.png');
|
||||||
});
|
});
|
||||||
|
|
||||||
it('should work for canvas', async ({ page, server, isElectron, isMac, browserName }) => {
|
it('should work for canvas', async ({ page, server, isElectron, isMac }) => {
|
||||||
it.fixme(isElectron && isMac, 'Fails on the bots');
|
it.fixme(isElectron && isMac, 'Fails on the bots');
|
||||||
await page.setViewportSize({ width: 500, height: 500 });
|
await page.setViewportSize({ width: 500, height: 500 });
|
||||||
await page.goto(server.PREFIX + '/screenshots/canvas.html');
|
await page.goto(server.PREFIX + '/screenshots/canvas.html');
|
||||||
const screenshot = await page.screenshot();
|
const screenshot = await page.screenshot();
|
||||||
const screenshotPrefix = browserName === 'chromium' && isMac && process.arch === 'arm64' ? '-macOS-arm64' : '';
|
expect(screenshot).toMatchSnapshot('screenshot-canvas.png');
|
||||||
expect(screenshot).toMatchSnapshot(`screenshot-canvas${screenshotPrefix}.png`);
|
|
||||||
});
|
});
|
||||||
|
|
||||||
it('should capture canvas changes', async ({ page, isElectron, browserName, isMac, isWebView2 }) => {
|
it('should capture canvas changes', async ({ page, isElectron, browserName, isMac, isWebView2 }) => {
|
||||||
|
|
|
||||||
Binary file not shown.
|
Before Width: | Height: | Size: 1.9 KiB |
Loading…
Reference in a new issue