mirror of
https://github.com/status-im/react-native.git
synced 2025-01-10 01:25:39 +00:00
03d57f2180
Summary: It got broken by https://github.com/facebook/react-native/pull/13173. When the test scripts are run without the "test" argument, we only want to compile the code, not run the packager and integration tests. On Travis we pass the "test" argument so we'll still run the packager and integration tests: https://github.com/facebook/react-native/blob/master/.travis.yml Reviewed By: gfosco Differential Revision: D4905912 fbshipit-source-id: e118e6e4f4a818fa06e89d417574e839c4192c1b
22 lines
581 B
Bash
Executable File
22 lines
581 B
Bash
Executable File
#!/bin/bash
|
|
set -ex
|
|
|
|
# Script used to run iOS tests.
|
|
# If not arguments are passed to the script, it will only compile
|
|
# the UIExplorer.
|
|
# If the script is called with a single argument "test", we'll
|
|
# also run the UIExplorer integration test (needs JS and packager):
|
|
# ./objc-test-ios.sh test
|
|
|
|
SCRIPTS=$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)
|
|
ROOT=$(dirname "$SCRIPTS")
|
|
|
|
cd "$ROOT"
|
|
|
|
SCHEME="UIExplorer"
|
|
SDK="iphonesimulator"
|
|
DESTINATION="platform=iOS Simulator,name=iPhone 5s,OS=10.1"
|
|
|
|
# If there is a "test" argument, pass it to the test script.
|
|
. ./scripts/objc-test.sh $1
|