test: firefox does not throttle rAF in the opener anymore (#14635)

This commit is contained in:
Yury Semikhatsky 2022-06-06 09:18:30 -07:00 committed by GitHub
parent 8202030c60
commit 7e130d0c3b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -240,9 +240,8 @@ it('should not dispatch binding on a closed page', async function({ browser, ser
expect(messages.join('|')).toBe('binding|close');
});
it('should not throttle rAF in the opener page', async ({ page, server, browserName }) => {
it('should not throttle rAF in the opener page', async ({ page, server }) => {
it.info().annotations.push({ type: 'issue', description: 'https://github.com/microsoft/playwright/issues/14557' });
it.fixme(browserName === 'firefox');
await page.goto(server.EMPTY_PAGE);
const [popup] = await Promise.all([
page.waitForEvent('popup'),