From 0931e85d4022df38ced0939352745ad34b975bd6 Mon Sep 17 00:00:00 2001 From: Jon Vanausdeln Date: Mon, 21 Oct 2024 12:24:18 -0700 Subject: [PATCH] Test Stability: Bumped timout for conda new project (#5088) ### Intent New project conda test has timed out a few times waiting for conda env to start. I see the retry saves it occasionally, but still fails sometimes. ### Approach Bump timeout waitng for new env to start up ### QA Notes Tests should pass on all runs --- .../src/areas/positron/new-project-wizard/new-project.test.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/smoke/src/areas/positron/new-project-wizard/new-project.test.ts b/test/smoke/src/areas/positron/new-project-wizard/new-project.test.ts index 27ab6ccc616..cb8505be2d2 100644 --- a/test/smoke/src/areas/positron/new-project-wizard/new-project.test.ts +++ b/test/smoke/src/areas/positron/new-project-wizard/new-project.test.ts @@ -49,7 +49,7 @@ describe('New Project Wizard', () => { expect(projectFiles).toContain('.conda'); }).toPass({ timeout: 50000 }); // The console should initialize without any prompts to install ipykernel - await app.workbench.positronConsole.waitForReady('>>>', 10000); + await app.workbench.positronConsole.waitForReady('>>>', 20000); await app.workbench.quickaccess.runCommand('workbench.action.toggleAuxiliaryBar'); await app.workbench.positronConsole.barClearButton.click(); await app.workbench.quickaccess.runCommand('workbench.action.toggleAuxiliaryBar');