We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2cf7273 commit 94a825dCopy full SHA for 94a825d
1 file changed
packages/b2c-cli/src/commands/ods/create.ts
@@ -254,7 +254,10 @@ export default class OdsCreate extends OdsCommand<typeof OdsCreate> {
254
this.log(t('commands.ods.create.waiting', 'Waiting for sandbox to be ready...'));
255
256
// Initial delay before first poll to allow the sandbox to be registered in the API
257
- await this.sleep(2000);
+ // Skip delay when pollInterval is 0 (test mode)
258
+ if (pollIntervalSeconds > 0) {
259
+ await this.sleep(2000);
260
+ }
261
262
while (true) {
263
// Check for timeout
0 commit comments