test(webkit): enable click test that was fixed by moving input agent (#424)

This commit is contained in:
Yury Semikhatsky 2020-01-08 10:49:14 -08:00 committed by GitHub
parent 25dfd61d16
commit 86fc2699aa
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

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