From 5335e52da5e46e9d339c59eaf63534cad3d7b7ad Mon Sep 17 00:00:00 2001 From: Dmitry Gozman Date: Tue, 18 Feb 2020 13:59:04 -0800 Subject: [PATCH] Update test/click.spec.js Co-Authored-By: Joel Einbinder --- 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 a62f8c6f46..ba7cdc9459 100644 --- a/test/click.spec.js +++ b/test/click.spec.js @@ -403,7 +403,7 @@ module.exports.describe = function({testRunner, expect, playwright, FFOX, CHROMI await page.click('button'); expect(await page.evaluate('window.clicked')).toBe(true); }); - xit('should click on an animated button', async({page}) => { + xit('should fail to click a button animated via CSS animations and setInterval', async({page}) => { // This test has a setInterval that consistently animates a button. // It checks that we detect the button to be continuously animating, and never try to click it. // This test exposes two issues: