mirror of
https://github.com/status-im/react-native.git
synced 2025-01-09 09:12:02 +00:00
457e348081
Reviewed By: dmmiller Differential Revision: D3264212 fb-gh-sync-id: 8790200a0d3c47050d6a91c906854b3a55640829 fbshipit-source-id: 8790200a0d3c47050d6a91c906854b3a55640829
17 lines
424 B
Bash
Executable File
17 lines
424 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# Runs all Android unit tests locally.
|
|
# See http://facebook.github.io/react-native/docs/testing.html
|
|
|
|
set -e
|
|
|
|
which buck > /dev/null || {
|
|
echo "React Native uses the Buck build tool to run tests. Please install Buck: https://buckbuild.com/setup/install.html";
|
|
exit 1;
|
|
}
|
|
|
|
echo "Fetching dependencies..."
|
|
buck fetch ReactAndroid/src/test/...
|
|
echo "Running unit tests..."
|
|
buck test ReactAndroid/src/test/...
|