Skip to content

Commit

Permalink
Test Stability: Bumped timout for conda new project (#5088)
Browse files Browse the repository at this point in the history
### 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
  • Loading branch information
jonvanausdeln authored Oct 21, 2024
1 parent e5bb8f5 commit 0931e85
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -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');
Expand Down

0 comments on commit 0931e85

Please sign in to comment.