From ac58341984c99c10ebfac7f8bbe1e8756c48e4d4 Mon Sep 17 00:00:00 2001 From: Anthony LC Date: Wed, 14 Aug 2024 11:23:40 +0200 Subject: [PATCH] =?UTF-8?q?=E2=9C=85(e2e)=20increase=20timeout=20doc=20exp?= =?UTF-8?q?ort=20test?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit We have a test asserting lot of things on the doc export, and it's failing on CI because of the timeout. We increase the timeout to make it pass. --- .../apps/e2e/__tests__/app-impress/doc-export.spec.ts | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/frontend/apps/e2e/__tests__/app-impress/doc-export.spec.ts b/src/frontend/apps/e2e/__tests__/app-impress/doc-export.spec.ts index 6ff83ab9..ddb201a3 100644 --- a/src/frontend/apps/e2e/__tests__/app-impress/doc-export.spec.ts +++ b/src/frontend/apps/e2e/__tests__/app-impress/doc-export.spec.ts @@ -85,6 +85,8 @@ test.describe('Doc Export', () => { page, browserName, }) => { + test.slow(); + const [randomDoc] = await createDoc(page, 'doc-editor', browserName, 1); let body = ''; @@ -148,6 +150,9 @@ test.describe('Doc Export', () => { .last() .fill('Test List 3'); + await page.keyboard.press('Enter'); + await page.keyboard.press('Backspace'); + // Add a number list await page.locator('.bn-block-outer').last().click(); await page.keyboard.press('Enter');