test: added remaning tests to yml

This commit is contained in:
John Yeo
2025-07-20 09:39:14 +01:00
parent 4a52d5293f
commit 7efbad69a0
3 changed files with 26 additions and 2 deletions

View File

@@ -131,6 +131,23 @@ jobs:
cd server/
chmod +x ./shell/g1.sh
./shell/g1.sh
- name: Run G2 tests
run: |
cd server/
chmod +x ./shell/g2.sh
./shell/g2.sh
- name: Run G3 tests
run: |
cd server/
chmod +x ./shell/g3.sh
./shell/g3.sh
- name: Run G4 tests
run: |
cd server/
chmod +x ./shell/g4.sh
./shell/g4.sh
- name: Message
run:

View File

@@ -3,7 +3,11 @@
# Source shared configuration
source "$(dirname "$0")/config.sh"
MOCHA_PARALLEL=true $MOCHA_SETUP
# MOCHA_PARALLEL=true $MOCHA_SETUP
if [[ "$1" == *"setup"* ]]; then
MOCHA_PARALLEL=true $MOCHA_SETUP
fi
$MOCHA_CMD 'tests/contUse/entities/*.ts'

View File

@@ -3,7 +3,10 @@
# Source shared configuration
source "$(dirname "$0")/config.sh"
MOCHA_PARALLEL=true $MOCHA_SETUP
# MOCHA_PARALLEL=true $MOCHA_SETUP
if [[ "$1" == *"setup"* ]]; then
MOCHA_PARALLEL=true $MOCHA_SETUP
fi
$MOCHA_CMD 'tests/advanced/multiFeature/*.ts' \
'tests/advanced/coupons/*.ts' \