test: mark test as flaky on Firefox (#1321)
Run: https://github.com/microsoft/playwright/pull/1320/checks?check_run_id=498666394
This commit is contained in:
parent
ac5b518bea
commit
59f2e888ca
|
|
@ -437,7 +437,8 @@ module.exports.describe = function({testRunner, expect, playwright, CHROMIUM, FF
|
||||||
expect(response.status()).toBe(200);
|
expect(response.status()).toBe(200);
|
||||||
await context.close();
|
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');
|
server.setAuth('/empty.html', 'user', 'pass');
|
||||||
const context = await browser.newContext({
|
const context = await browser.newContext({
|
||||||
httpCredentials: { username: 'user', password: 'pass' }
|
httpCredentials: { username: 'user', password: 'pass' }
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue