Skip to content

Commit

Permalink
fix flakyness condition
Browse files Browse the repository at this point in the history
  • Loading branch information
Sahejkm committed Jun 3, 2024
1 parent 98883a9 commit 4101c07
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/lexical-playground/__tests__/e2e/Links.spec.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -1963,7 +1963,7 @@ test.describe('Links', () => {
page,
isCollab,
}) => {
test.fixme(isCollab && IS_MAC && IS_LINUX, 'Flaky on Collab, Mac + Linux');
test.fixme(isCollab && (IS_MAC || IS_LINUX), 'Flaky on Collab, Mac/Linux');
await focusEditor(page);
await page.keyboard.type('Hello ');
await toggleBold(page);
Expand Down

0 comments on commit 4101c07

Please sign in to comment.