We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 05b610b commit b020f34Copy full SHA for b020f34
lib/iphone-simulator-xcode-simctl.ts
@@ -233,8 +233,12 @@ export class XCodeSimctlSimulator
233
if (!this.isDeviceLogOperationStarted) {
234
const deviceVersion = device ? device.runtimeVersion : "";
235
const majorVersion = deviceVersion.split(".")[0];
236
+
237
+ const isVisionOS = device.platform === "visionOS";
238
+ const isSupportediOSVersion =
239
+ majorVersion && parseInt(majorVersion) >= 11;
240
- if (majorVersion && parseInt(majorVersion) >= 11) {
241
+ if (isVisionOS || isSupportediOSVersion) {
242
timer = setTimeout(() => {
243
fulfillSafe();
244
}, 3000);
0 commit comments