test: disable failing scrollIntoViewIfNeeded test for firefox (#546)

This commit is contained in:
Joel Einbinder 2020-01-21 12:01:39 -08:00 committed by Dmitry Gozman
parent 80c3b46a54
commit 612834b9e8

View File

@ -269,7 +269,7 @@ module.exports.describe = function({testRunner, expect, FFOX, CHROMIUM, WEBKIT})
});
describe('ElementHandle.scrollIntoViewIfNeeded', function() {
it('should work', async({page, server}) => {
it.skip(FFOX)('should work', async({page, server}) => {
await page.goto(server.PREFIX + '/offscreenbuttons.html');
for (let i = 0; i < 11; ++i) {
const button = await page.$('#btn' + i);