[ADD] mobile test script

This commit is contained in:
Mathieu Benoit 2026-03-23 02:59:29 -04:00
parent c8025eb2a0
commit 9f2068133d

13
mobile/run_tests.sh Executable file
View file

@ -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 -