Skip to content

Commit

Permalink
test(chromium): disable large screenshot test (#4446)
Browse files Browse the repository at this point in the history
  • Loading branch information
JoelEinbinder committed Nov 16, 2020
1 parent 0ae455f commit 3da1f73
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion test/page-screenshot.spec.ts
Expand Up @@ -298,8 +298,9 @@ describe('page screenshot', (suite, { browserName, headful }) => {
expect([buffer[0], buffer[1], buffer[2]]).toEqual([0xFF, 0xD8, 0xFF]);
});

it('should work with large size', test => {
it('should work with large size', (test, {browserName, headful, platform}) => {
test.slow('Large screenshot is slow');
test.fixme(browserName === 'chromium' && headful === true && platform === 'linux', 'Chromium has gpu problems on linux with large screnshots');
}, async ({ page }) => {
await page.setViewportSize({ width: 1280, height: 800 });
await page.evaluate(() => {
Expand Down

0 comments on commit 3da1f73

Please sign in to comment.