react-native/runXcodeTests.sh
Eric Vicenti 4a80dceac7 Re-license and rename UIExplorer integration test app as RNTester
Reviewed By: yungsters

Differential Revision: D4950085

fbshipit-source-id: 44574b5d0ef0d2ad5dfc714309b18dc69cbad9ff
2017-05-08 11:31:19 -07:00

19 lines
333 B
Bash
Executable File

#!/bin/sh
# Run from react-native root
set -e
if [ -z "$1" ]
then
echo "You must supply an OS version as the first arg, e.g. 8.1"
exit 255
fi
xctool \
-project RNTester/RNTester.xcodeproj \
-scheme RNTester \
-sdk iphonesimulator${1} \
-destination "platform=iOS Simulator,OS=${1},name=iPhone 5" \
build test