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
23 lines
595 B
Bash
Executable File
23 lines
595 B
Bash
Executable File
#!/bin/bash
|
|
set -ex
|
|
|
|
# Script used to run tvOS 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-tvos.sh test
|
|
|
|
SCRIPTS=$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)
|
|
ROOT=$(dirname "$SCRIPTS")
|
|
|
|
cd "$ROOT"
|
|
|
|
SCHEME="UIExplorer-tvOS"
|
|
SDK="appletvsimulator"
|
|
DESTINATION="platform=tvOS Simulator,name=Apple TV 1080p,OS=10.1"
|
|
|
|
# If there's a "test" argument, pass it to the test script.
|
|
. ./scripts/objc-test.sh $1
|
|
|