mirror of
https://github.com/facebook/react-native.git
synced 2025-11-01 09:14:26 +00:00
c0d8c1db90
Summary: We recently updated React Native's docs site to have its own domain reactnative.dev and needed to update the URLs in the source code CHANGELOG: [INTERNAL] Reviewed By: hramos Differential Revision: D20072842 fbshipit-source-id: 1970d9214c872a6e7abf697d99f8f5360b3b308e
20 lines
517 B
Bash
Executable File
20 lines
517 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 https://reactnative.dev/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/...
|