From 9f2068133de6dd5c8886f0d62f1c2f700e08dd69 Mon Sep 17 00:00:00 2001 From: Mathieu Benoit Date: Mon, 23 Mar 2026 02:59:29 -0400 Subject: [PATCH] [ADD] mobile test script --- mobile/run_tests.sh | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100755 mobile/run_tests.sh 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 -