From 74313842baa15d12c1a8be0529a16aa8ea204d83 Mon Sep 17 00:00:00 2001 From: Kaz Date: Mon, 18 Nov 2024 13:47:08 -0800 Subject: [PATCH] Workaround stuck CI --- app/ide-desktop/client/tests/createNewProject.spec.ts | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/app/ide-desktop/client/tests/createNewProject.spec.ts b/app/ide-desktop/client/tests/createNewProject.spec.ts index 47f41f2318..1293c6fb16 100644 --- a/app/ide-desktop/client/tests/createNewProject.spec.ts +++ b/app/ide-desktop/client/tests/createNewProject.spec.ts @@ -12,7 +12,9 @@ electronTest('Create new project', async ({ page }) => { // We see the node type and visualization, so the engine is running the program await expect(page.locator('.node-type')).toHaveText('Table', { timeout: 30000 }) await expect(page.locator('.TableVisualization')).toBeVisible({ timeout: 30000 }) - await expect(page.locator('.TableVisualization')).toContainText('Welcome To Enso!') + await expect(page.locator('.TableVisualization')).toContainText('Welcome To Enso!', { + timeout: 30000, + }) // We can add new node and see suggestions. await page.locator('.GraphNode').click()