We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 31740d6 commit 4deab57Copy full SHA for 4deab57
1 file changed
src/test/utils/testUtils.ts
@@ -158,7 +158,7 @@ export async function setCustomParameter(customParam: string) {
158
159
// Wait for input to be fully ready before confirming
160
const wait = getWaitHelper();
161
- await wait.sleep(1000);
+ await wait.sleep(2000);
162
163
await input.confirm();
164
});
@@ -177,6 +177,11 @@ export async function chooseCmdFromHistory(command: string): Promise<boolean> {
177
throw new Error("Quick pick not found");
178
}
179
await pick.select();
180
+
181
+ // Wait for selection to be processed before confirming
182
+ const wait = getWaitHelper();
183
184
185
186
187
return true;
0 commit comments