test: mark test as flaky on FFOX

This commit is contained in:
Andrey Lushnikov 2020-04-23 19:49:51 -07:00
parent 5ac7f0e4ec
commit 62966144bd

View file

@ -82,8 +82,10 @@ describe.skip(WEBKIT)('Permissions', function() {
await context.clearPermissions();
expect(await getPermission(page, 'geolocation')).toBe('prompt');
});
//TODO: flaky on Linux. https://github.com/microsoft/playwright/pull/1790/checks?check_run_id=587327883
it.fail(FFOX && LINUX)('should trigger permission onchange', async({page, server, context}) => {
//TODO: flaky
// - Linux: https://github.com/microsoft/playwright/pull/1790/checks?check_run_id=587327883
// - Win: https://ci.appveyor.com/project/aslushnikov/playwright/builds/32402536
it.fail(FFOX)('should trigger permission onchange', async({page, server, context}) => {
await page.goto(server.EMPTY_PAGE);
await page.evaluate(() => {
window['events'] = [];