From 384d496577a29db822234151766ccba70e8e96de Mon Sep 17 00:00:00 2001 From: Chad Smith Date: Thu, 5 Dec 2019 11:50:06 -0800 Subject: [PATCH] use iPhone X instead of iPhone 6s (#27295) Summary: Pull Request resolved: https://github.com/facebook/react-native/pull/27295 Changelog: [Testing] [iOS] Use iPhone X in end to end tests since newer versions of iOS do not run on iPhone 6s Reviewed By: TheSavior Differential Revision: D18645860 fbshipit-source-id: 01bd0e5f4a903c1a77772d321f411ff20c627d6a --- package.json | 4 ++-- scripts/.tests.env | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/package.json b/package.json index 8607ff1f16a1..8194f975f619 100644 --- a/package.json +++ b/package.json @@ -164,13 +164,13 @@ "binaryPath": "RNTester/build/Build/Products/Release-iphonesimulator/RNTester.app/", "build": "xcodebuild -workspace RNTester/RNTesterPods.xcworkspace -scheme RNTester -configuration Release -sdk iphonesimulator -derivedDataPath RNTester/build -UseModernBuildSystem=NO -quiet", "type": "ios.simulator", - "name": "iPhone 6s" + "name": "iPhone X" }, "ios.sim.debug": { "binaryPath": "RNTester/build/Build/Products/Debug-iphonesimulator/RNTester.app/", "build": "xcodebuild -workspace RNTester/RNTesterPods.xcworkspace -scheme RNTester -configuration Debug -sdk iphonesimulator -derivedDataPath RNTester/build -UseModernBuildSystem=NO -quiet", "type": "ios.simulator", - "name": "iPhone 6s" + "name": "iPhone X" } } } diff --git a/scripts/.tests.env b/scripts/.tests.env index 94c746b31fec..da1d2217cec0 100644 --- a/scripts/.tests.env +++ b/scripts/.tests.env @@ -18,7 +18,7 @@ export AVD_ABI=x86 ## IOS ## export IOS_TARGET_OS="12.4" -export IOS_DEVICE="iPhone 6s" +export IOS_DEVICE="iPhone X" export TVOS_DEVICE="Apple TV" ## CI OVERRIDES ##