Skip to content

Commit

Permalink
test: mark test as flaky on FFOX
Browse files Browse the repository at this point in the history
  • Loading branch information
aslushnikov committed Apr 24, 2020
1 parent 5ac7f0e commit 6296614
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions test/permissions.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -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'] = [];
Expand Down

0 comments on commit 6296614

Please sign in to comment.