Skip to content

Commit

Permalink
test: mark as fixme failing collab test on linux firefox
Browse files Browse the repository at this point in the history
  • Loading branch information
umaranis committed May 9, 2024
1 parent 9900c16 commit d57860c
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion demos/playground/src/__tests__/e2e/Autocomplete.spec.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
*/

import {
IS_LINUX,
assertHTML,
focusEditor,
html,
Expand All @@ -19,7 +20,13 @@ test.describe('Autocomplete', () => {
test.beforeEach(({isCollab, page}) =>
initialize({isAutocomplete: true, isCollab, page}),
);
test('Can autocomplete a word', async ({page, isPlainText}) => {
test('Can autocomplete a word', async ({
page,
isPlainText,
isCollab,
browserName,
}) => {
test.fixme(isCollab && browserName === 'firefox' && IS_LINUX);
await focusEditor(page);
await page.keyboard.type('Sort by alpha');
await sleep(500);
Expand Down

0 comments on commit d57860c

Please sign in to comment.