test: enable passing modifiers test (#733)

This test passes. Maybe at some point it failed on mac, but that has been fixed for a long time.
This commit is contained in:
Joel Einbinder 2020-01-28 18:19:59 -08:00 committed by GitHub
parent ce7c8d74b5
commit b68a88a3fc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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);