Skip to content

Commit 4deab57

Browse files
committed
Add small wait and bump another
1 parent 31740d6 commit 4deab57

1 file changed

Lines changed: 6 additions & 1 deletion

File tree

src/test/utils/testUtils.ts

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,7 @@ export async function setCustomParameter(customParam: string) {
158158

159159
// Wait for input to be fully ready before confirming
160160
const wait = getWaitHelper();
161-
await wait.sleep(1000);
161+
await wait.sleep(2000);
162162

163163
await input.confirm();
164164
});
@@ -177,6 +177,11 @@ export async function chooseCmdFromHistory(command: string): Promise<boolean> {
177177
throw new Error("Quick pick not found");
178178
}
179179
await pick.select();
180+
181+
// Wait for selection to be processed before confirming
182+
const wait = getWaitHelper();
183+
await wait.sleep(2000);
184+
180185
await input.confirm();
181186
});
182187
return true;

0 commit comments

Comments
 (0)