Skip to content

Commit

Permalink
try increasing time
Browse files Browse the repository at this point in the history
  • Loading branch information
anthonykim1 committed Oct 30, 2024
1 parent 2f3e787 commit eaa78f2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/test/smoke/smartSend.smoke.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ suite('Smoke Test: Run Smart Selection and Advance Cursor', async () => {
});

const checkIfFileHasBeenCreated = () => fs.pathExists(outputFile);
await waitForCondition(checkIfFileHasBeenCreated, 10_000, `"${outputFile}" file not created`);
await waitForCondition(checkIfFileHasBeenCreated, 20_000, `"${outputFile}" file not created`);

await vscode.commands
.executeCommand<void>('python.execSelectionInTerminal', textDocument.uri)
Expand All @@ -78,7 +78,7 @@ suite('Smoke Test: Run Smart Selection and Advance Cursor', async () => {
return new Promise<void>((resolve) => {
setTimeout(() => {
resolve();
}, 10000);
}, 20000);
});
}

Expand Down

0 comments on commit eaa78f2

Please sign in to comment.