mirror of
https://github.com/facebook/react-native.git
synced 2025-11-01 09:14:26 +00:00
e1cfeaddd4
Summary: Changelog: [General] [Fixed] - License header cleanup Reviewed By: cpojer Differential Revision: D17749100 fbshipit-source-id: edca9c73a065e9fc311109cd6efeb1f75451a55a
20 lines
532 B
Bash
Executable File
20 lines
532 B
Bash
Executable File
#!/bin/bash
|
|
# Copyright (c) Facebook, Inc. and its affiliates.
|
|
#
|
|
# This source code is licensed under the MIT license found in the
|
|
# LICENSE file in the root directory of this source tree.
|
|
|
|
# Runs all Android unit tests locally.
|
|
# See http://facebook.github.io/react-native/docs/testing.html
|
|
|
|
source $(dirname $0)/validate-android-sdk.sh
|
|
source $(dirname $0)/validate-android-test-env.sh
|
|
|
|
set -e
|
|
|
|
echo "Fetching dependencies..."
|
|
buck fetch ReactAndroid/src/test/...
|
|
|
|
echo "Running unit tests..."
|
|
buck test ReactAndroid/src/test/...
|