From d57860cc2d62655bd1e8af152769d2de8ccc49ec Mon Sep 17 00:00:00 2001 From: umaranis Date: Thu, 9 May 2024 21:06:59 +1000 Subject: [PATCH] test: mark as fixme failing collab test on linux firefox --- demos/playground/src/__tests__/e2e/Autocomplete.spec.mjs | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/demos/playground/src/__tests__/e2e/Autocomplete.spec.mjs b/demos/playground/src/__tests__/e2e/Autocomplete.spec.mjs index 70e58bbe..c1d11ba5 100644 --- a/demos/playground/src/__tests__/e2e/Autocomplete.spec.mjs +++ b/demos/playground/src/__tests__/e2e/Autocomplete.spec.mjs @@ -7,6 +7,7 @@ */ import { + IS_LINUX, assertHTML, focusEditor, html, @@ -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);