From 206c7f11ae4eaf61448656f33876f1f74015e6ce Mon Sep 17 00:00:00 2001 From: Anthony LC Date: Thu, 6 Jun 2024 11:32:11 +0200 Subject: [PATCH] =?UTF-8?q?=E2=9C=85(e2e)=20flaky=20saves=20the=20doc=20wh?= =?UTF-8?q?en=20we=20quit=20pages?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Stop to check "saves the doc when we quit pages" with webkit browser. It is flaky. --- src/frontend/apps/e2e/__tests__/app-impress/pad-editor.spec.ts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/frontend/apps/e2e/__tests__/app-impress/pad-editor.spec.ts b/src/frontend/apps/e2e/__tests__/app-impress/pad-editor.spec.ts index f9e75460..d8c31319 100644 --- a/src/frontend/apps/e2e/__tests__/app-impress/pad-editor.spec.ts +++ b/src/frontend/apps/e2e/__tests__/app-impress/pad-editor.spec.ts @@ -149,6 +149,9 @@ test.describe('Pad Editor', () => { }); test('it saves the doc when we quit pages', async ({ page, browserName }) => { + // eslint-disable-next-line playwright/no-skipped-test + test.skip(browserName === 'webkit', 'This test is very flaky with webkit'); + const [pad] = await createPad(page, 'pad-save-quit', browserName, 1); const panel = page.getByLabel('Documents panel').first();