Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions tests/library/browsercontext-basic.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -69,8 +69,8 @@ it('should be able to click across browser contexts', async function({ browser }
await page2.close();
});

it('should be able to hover across browser contexts in parallel', async function({ browser, browserName }) {
it.fixme(browserName === 'firefox');
it('should be able to hover across browser contexts in parallel', async function({ browser, browserName, isBidi }) {
it.fixme(browserName === 'firefox' && !isBidi);
it.info().annotations.push({ type: 'issue', description: 'https://github.com/microsoft/playwright/issues/40562' });

const html = `
Expand Down
Loading