Skip to content

Commit

Permalink
test: enable passing modifiers test (#733)
Browse files Browse the repository at this point in the history
This test passes. Maybe at some point it failed on mac, but that has been fixed for a long time.
  • Loading branch information
JoelEinbinder authored Jan 29, 2020
1 parent ce7c8d7 commit b68a88a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/click.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down

0 comments on commit b68a88a

Please sign in to comment.