Skip to content

Commit 72ae5c8

Browse files
authored
test: remove stray test (#1302)
Fixes #1294
1 parent 27d039a commit 72ae5c8

File tree

1 file changed

+0
-8
lines changed

1 file changed

+0
-8
lines changed

test/screenshot.spec.js

-8
Original file line numberDiff line numberDiff line change
@@ -163,14 +163,6 @@ module.exports.describe = function({testRunner, expect, product, FFOX, CHROMIUM,
163163
});
164164
expect(screenshot).toBeGolden('screenshot-clip-odd-size.png');
165165
});
166-
it('should return base64', async({page, server}) => {
167-
await page.setViewportSize({width: 500, height: 500});
168-
await page.goto(server.PREFIX + '/grid.html');
169-
const screenshot = await page.screenshot({
170-
encoding: 'base64'
171-
});
172-
expect(Buffer.from(screenshot, 'base64')).toBeGolden('screenshot-sanity.png');
173-
});
174166
it.skip(FFOX)('should work with a mobile viewport', async({browser, server}) => {
175167
const context = await browser.newContext({viewport: { width: 320, height: 480, isMobile: true }});
176168
const page = await context.newPage();

0 commit comments

Comments
 (0)