Skip to content

Commit 894942a

Browse files
thymikeecursoragent
andcommitted
ios: increase simctl launch retry budget for CI simulators
SpringBoard can take several seconds after boot to accept app launches. Increase from 3 attempts / 500ms–2s to 5 attempts / 1s–5s to give CI simulators enough time. Co-authored-by: Cursor <cursoragent@cursor.com>
1 parent a476c9c commit 894942a

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

src/platforms/ios/index.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -60,9 +60,9 @@ export async function openIosApp(device: DeviceInfo, app: string): Promise<void>
6060
});
6161
},
6262
{
63-
maxAttempts: 3,
64-
baseDelayMs: 500,
65-
maxDelayMs: 2000,
63+
maxAttempts: 5,
64+
baseDelayMs: 1_000,
65+
maxDelayMs: 5_000,
6666
jitter: 0.2,
6767
shouldRetry: isTransientSimulatorLaunchFailure,
6868
},

0 commit comments

Comments
 (0)