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()