From 251c7d8df10601f68253717f181007cb7e6273ca Mon Sep 17 00:00:00 2001 From: Andrey Lushnikov Date: Tue, 1 Jun 2021 23:09:07 -0700 Subject: [PATCH] test: properly disable electron test (#6839) 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 P.S. this is a follow-up to a1106e5d4ed32a2dcf1a047459f382026b42491c - turns out `it.fail` is still failing in case of a timeout. --- tests/page/page-autowaiting-no-hang.spec.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/page/page-autowaiting-no-hang.spec.ts b/tests/page/page-autowaiting-no-hang.spec.ts index 67d1cc3413..f0e82e6bff 100644 --- a/tests/page/page-autowaiting-no-hang.spec.ts +++ b/tests/page/page-autowaiting-no-hang.spec.ts @@ -24,7 +24,7 @@ it('clicking on links which do not commit navigation', async ({page, server, htt }); it('calling window.stop async', async ({page, server, isElectron}) => { - it.fail(isElectron); + it.fixme(isElectron); server.setRoute('/empty.html', async (req, res) => {}); await page.evaluate(url => { window.location.href = url;