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 955a39a commit 23d9a1aCopy full SHA for 23d9a1a
packages/cli-platform-apple/src/commands/runCommand/createRun.ts
@@ -194,7 +194,9 @@ const createRun =
194
}
195
196
const fallbackSimulator =
197
- platformName === 'ios' ? getFallbackSimulator(args) : devices[0];
+ platformName === 'ios' || platformName === 'tvos'
198
+ ? getFallbackSimulator(args)
199
+ : devices[0];
200
201
if (args.listDevices || args.interactive) {
202
if (args.device || args.udid) {
0 commit comments