From 59f2e888cac4e795688fa2671001d620cc0a66ab Mon Sep 17 00:00:00 2001 From: Andrey Lushnikov Date: Tue, 10 Mar 2020 12:56:32 -0700 Subject: [PATCH] test: mark test as flaky on Firefox (#1321) Run: https://github.com/microsoft/playwright/pull/1320/checks?check_run_id=498666394 --- 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 4a0b95a533..f7c4c80138 100644 --- a/test/browsercontext.spec.js +++ b/test/browsercontext.spec.js @@ -437,7 +437,8 @@ module.exports.describe = function({testRunner, expect, playwright, CHROMIUM, FF expect(response.status()).toBe(200); await context.close(); }); - it('should allow disable authentication', async({browser, server}) => { + // flaky: https://github.com/microsoft/playwright/pull/1320/checks?check_run_id=498666394 + it.fail(FFOX && LINUX)('should allow disable authentication', async({browser, server}) => { server.setAuth('/empty.html', 'user', 'pass'); const context = await browser.newContext({ httpCredentials: { username: 'user', password: 'pass' }