test: mark failing test as fixme (#5397)

The test has been failing since recently:
http://flaky.aslushnikov.com#commits=20&timestamp=1612958811899&filter_spec=popups+2
This commit is contained in:
Andrey Lushnikov 2021-02-10 09:04:08 -08:00 committed by GitHub
parent c12374ea07
commit d21d24486c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -49,7 +49,9 @@ it('should emit for immediately closed popups', async ({browser}) => {
await context.close();
});
it('should emit for immediately closed popups 2', async ({page, server}) => {
it('should emit for immediately closed popups 2', (test, {browserName, video}) => {
test.fixme(browserName === 'firefox' && video);
}, async ({page, server}) => {
await page.goto(server.EMPTY_PAGE);
const [popup] = await Promise.all([
page.waitForEvent('popup'),