Skip to content

Commit

Permalink
skip new test with collab
Browse files Browse the repository at this point in the history
  • Loading branch information
etrepum committed Nov 28, 2024
1 parent 7ed6cb2 commit c9d7786
Showing 1 changed file with 7 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -156,8 +156,14 @@ test.describe('Autocomplete', () => {
`,
);
});
test('Undo does not cause an exception', async ({page, isPlainText}) => {
test('Undo does not cause an exception', async ({
page,
isPlainText,
isCollab,
}) => {
test.skip(isPlainText);
// Autocomplete has known issues in collab https://github.com/facebook/lexical/issues/6844
test.skip(isCollab);
await focusEditor(page);
await toggleBold(page);
await toggleItalic(page);
Expand Down

0 comments on commit c9d7786

Please sign in to comment.