From a293b96952adc1bd829a423bb92a0b72a1a1c00f Mon Sep 17 00:00:00 2001 From: Jan Scheffler Date: Mon, 3 May 2021 10:17:15 +0200 Subject: [PATCH] chore: disable flaky test on Firefox Issue: #7182 --- test/click.spec.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/test/click.spec.ts b/test/click.spec.ts index fa6f0309c1f38..75779bab0e1d1 100644 --- a/test/click.spec.ts +++ b/test/click.spec.ts @@ -239,7 +239,8 @@ describe('Page.click', function () { ) ).toBe('clicked'); }); - it('should double click the button', async () => { + // See https://github.com/puppeteer/puppeteer/issues/7175 + itFailsFirefox('should double click the button', async () => { const { page, server } = getTestState(); await page.goto(server.PREFIX + '/input/button.html');