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 35481b2 commit 56a74c0Copy full SHA for 56a74c0
packages/platform-ios/src/commands/runIOS/index.ts
@@ -145,11 +145,11 @@ async function runOnSimulator(
145
146
/**
147
* If provided simulator does not exist, try simulators in following order
148
+ * - iPhone 12
149
* - iPhone 11
- * - iPhone X
150
* - iPhone 8
151
*/
152
- const fallbackSimulators = ['iPhone 11', 'iPhone X', 'iPhone 8'];
+ const fallbackSimulators = ['iPhone 12', 'iPhone 11', 'iPhone 8'];
153
const selectedSimulator = fallbackSimulators.reduce((simulator, fallback) => {
154
return (
155
simulator || findMatchingSimulator(simulators, {simulator: fallback})
0 commit comments