From a1106e5d4ed32a2dcf1a047459f382026b42491c Mon Sep 17 00:00:00 2001 From: Andrey Lushnikov Date: Tue, 1 Jun 2021 19:04:24 -0700 Subject: [PATCH] test: disable test that fails on Electron (#6837) This test is failing since https://github.com/microsoft/playwright/commit/ee7e38c60d6d79b0935ead24dbe69719d94ddcff Dashboard: https://devops.aslushnikov.com/flakiness2.html#browser=electron&platform=Ubuntu+20.04×tamp=1622444340000 --- tests/page/page-autowaiting-no-hang.spec.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tests/page/page-autowaiting-no-hang.spec.ts b/tests/page/page-autowaiting-no-hang.spec.ts index 03c097febf..67d1cc3413 100644 --- a/tests/page/page-autowaiting-no-hang.spec.ts +++ b/tests/page/page-autowaiting-no-hang.spec.ts @@ -23,7 +23,8 @@ it('clicking on links which do not commit navigation', async ({page, server, htt await page.click('a'); }); -it('calling window.stop async', async ({page, server}) => { +it('calling window.stop async', async ({page, server, isElectron}) => { + it.fail(isElectron); server.setRoute('/empty.html', async (req, res) => {}); await page.evaluate(url => { window.location.href = url;