test: enable passing modifiers test

This commit is contained in:
Joel Einbinder 2020-01-28 18:11:55 -08:00
parent 184b25ff7b
commit 6d83f923a8

View file

@ -349,7 +349,7 @@ module.exports.describe = function({testRunner, expect, playwright, FFOX, CHROMI
expect(await page.evaluate(() => offsetY)).toBe(1910);
});
it.skip(WEBKIT)('should update modifiers correctly', async({page, server}) => {
it('should update modifiers correctly', async({page, server}) => {
await page.goto(server.PREFIX + '/input/button.html');
await page.click('button', { modifiers: ['Shift'] });
expect(await page.evaluate(() => shiftKey)).toBe(true);