From 27eb25acef756c437c7389528f4e901d04e286fe Mon Sep 17 00:00:00 2001 From: Andrey Lushnikov Date: Mon, 9 Mar 2020 16:13:16 -0700 Subject: [PATCH] test: disable flaky test on Firefox Linux References #1303 --- test/browsercontext.spec.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/test/browsercontext.spec.js b/test/browsercontext.spec.js index 92487d5bf7..7066f921bd 100644 --- a/test/browsercontext.spec.js +++ b/test/browsercontext.spec.js @@ -382,7 +382,8 @@ module.exports.describe = function({testRunner, expect, playwright, CHROMIUM, FF expect(response.status()).toBe(200); await context.close(); }); - it('should fail if wrong credentials', async({browser, server}) => { + // flaky: https://github.com/microsoft/playwright/issues/1303 + it.fail(FFOX)('should fail if wrong credentials', async({browser, server}) => { server.setAuth('/empty.html', 'user', 'pass'); const context = await browser.newContext({ httpCredentials: { username: 'foo', password: 'bar' }