Skip to content

Commit eaa78f2

Browse files
committed
try increasing time
1 parent 2f3e787 commit eaa78f2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/test/smoke/smartSend.smoke.test.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ suite('Smoke Test: Run Smart Selection and Advance Cursor', async () => {
6161
});
6262

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

6666
await vscode.commands
6767
.executeCommand<void>('python.execSelectionInTerminal', textDocument.uri)
@@ -78,7 +78,7 @@ suite('Smoke Test: Run Smart Selection and Advance Cursor', async () => {
7878
return new Promise<void>((resolve) => {
7979
setTimeout(() => {
8080
resolve();
81-
}, 10000);
81+
}, 20000);
8282
});
8383
}
8484

0 commit comments

Comments
 (0)