diff --git a/test/integration/freetext_editor_spec.mjs b/test/integration/freetext_editor_spec.mjs index c7aa0e3c4e9391..0f4d355f0156c4 100644 --- a/test/integration/freetext_editor_spec.mjs +++ b/test/integration/freetext_editor_spec.mjs @@ -3563,7 +3563,7 @@ describe("FreeText Editor", () => { await closePages(pages); }); - it("must check that pasting html just keep the text", async () => { + fit("must check that pasting html just keep the text", async () => { await Promise.all( pages.map(async ([browserName, page]) => { await switchToFreeText(page); @@ -3661,7 +3661,7 @@ describe("FreeText Editor", () => { // Nothing should change, so it's hard to wait on something. // eslint-disable-next-line no-restricted-syntax - await waitForTimeout(100); + await waitForTimeout(250); text = await getText(editorSelector); expect(text).withContext(`In ${browserName}`).toEqual(lastText); @@ -3683,7 +3683,7 @@ describe("FreeText Editor", () => { // Nothing should change, so it's hard to wait on something. // eslint-disable-next-line no-restricted-syntax - await waitForTimeout(100); + await waitForTimeout(250); const html = await getHTML(); expect(html).withContext(`In ${browserName}`).toEqual(prevHTML);