Skip to content

Commit b68a88a

Browse files
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.
1 parent ce7c8d7 commit b68a88a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/click.spec.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -349,7 +349,7 @@ module.exports.describe = function({testRunner, expect, playwright, FFOX, CHROMI
349349
expect(await page.evaluate(() => offsetY)).toBe(1910);
350350
});
351351

352-
it.skip(WEBKIT)('should update modifiers correctly', async({page, server}) => {
352+
it('should update modifiers correctly', async({page, server}) => {
353353
await page.goto(server.PREFIX + '/input/button.html');
354354
await page.click('button', { modifiers: ['Shift'] });
355355
expect(await page.evaluate(() => shiftKey)).toBe(true);

0 commit comments

Comments
 (0)