erplibre/mobile/run_tests.sh

14 lines
255 B
Bash
Raw Permalink Normal View History

2026-03-23 02:59:29 -04:00
#!/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 -