From d791583ae5bd09d9993044fca946f2f70f1b5ee7 Mon Sep 17 00:00:00 2001 From: Andrey Lushnikov Date: Fri, 8 Sep 2017 23:42:06 -0700 Subject: [PATCH] [tests] Skip flaky test (#730) Reference #673 --- test/test.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/test.js b/test/test.js index c0d56913..b82d8b82 100644 --- a/test/test.js +++ b/test/test.js @@ -1514,7 +1514,7 @@ describe('Page', function() { await page.tap('button'); expect(await page.evaluate(() => result)).toBe('Clicked'); })); - it('should report touches', SX(async function() { + xit('should report touches', SX(async function() { await page.goto(PREFIX + '/input/touches.html'); const button = await page.$('button'); await button.tap();