Skip to content

Commit 6296614

Browse files
committed
test: mark test as flaky on FFOX
1 parent 5ac7f0e commit 6296614

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

test/permissions.spec.js

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -82,8 +82,10 @@ describe.skip(WEBKIT)('Permissions', function() {
8282
await context.clearPermissions();
8383
expect(await getPermission(page, 'geolocation')).toBe('prompt');
8484
});
85-
//TODO: flaky on Linux. https://github.com/microsoft/playwright/pull/1790/checks?check_run_id=587327883
86-
it.fail(FFOX && LINUX)('should trigger permission onchange', async({page, server, context}) => {
85+
//TODO: flaky
86+
// - Linux: https://github.com/microsoft/playwright/pull/1790/checks?check_run_id=587327883
87+
// - Win: https://ci.appveyor.com/project/aslushnikov/playwright/builds/32402536
88+
it.fail(FFOX)('should trigger permission onchange', async({page, server, context}) => {
8789
await page.goto(server.EMPTY_PAGE);
8890
await page.evaluate(() => {
8991
window['events'] = [];

0 commit comments

Comments
 (0)