From eaa78f2e14558469e11ec2e5fd3e1be7bd9dc8cb Mon Sep 17 00:00:00 2001 From: Anthony Kim Date: Tue, 29 Oct 2024 20:34:58 -0700 Subject: [PATCH] try increasing time --- src/test/smoke/smartSend.smoke.test.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/test/smoke/smartSend.smoke.test.ts b/src/test/smoke/smartSend.smoke.test.ts index 4c1c2631f9ce..0c1753963bc0 100644 --- a/src/test/smoke/smartSend.smoke.test.ts +++ b/src/test/smoke/smartSend.smoke.test.ts @@ -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('python.execSelectionInTerminal', textDocument.uri) @@ -78,7 +78,7 @@ suite('Smoke Test: Run Smart Selection and Advance Cursor', async () => { return new Promise((resolve) => { setTimeout(() => { resolve(); - }, 10000); + }, 20000); }); }