diff --git a/mobile/run_tests.sh b/mobile/run_tests.sh new file mode 100755 index 0000000..d790193 --- /dev/null +++ b/mobile/run_tests.sh @@ -0,0 +1,13 @@ +#!/usr/bin/env bash + +if [[ ! -d "./mobile/erplibre_home_mobile" ]]; then + echo "Please, run installation ./mobile/install_mobile_dev.sh before run this script ./mobile/run_tests.sh" + exit 1 +fi + +cd mobile/erplibre_home_mobile + +npm install +npm test + +cd -