From 86fc2699aa4170344876f77b56341bf351508dd9 Mon Sep 17 00:00:00 2001 From: Yury Semikhatsky Date: Wed, 8 Jan 2020 10:49:14 -0800 Subject: [PATCH] test(webkit): enable click test that was fixed by moving input agent (#424) --- test/click.spec.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/click.spec.js b/test/click.spec.js index c792a791ad..42aa318f3a 100644 --- a/test/click.spec.js +++ b/test/click.spec.js @@ -71,7 +71,7 @@ module.exports.describe = function({testRunner, expect, playwright, FFOX, CHROME await page.click('button'); expect(await page.evaluate(() => result)).toBe('Clicked'); }); - it.skip(WEBKIT)('should click the button after a cross origin navigation ', async({page, server}) => { + it('should click the button after a cross origin navigation ', async({page, server}) => { await page.goto(server.PREFIX + '/input/button.html'); await page.click('button'); await page.goto(server.CROSS_PROCESS_PREFIX + '/input/button.html');