16 lines
416 B
Bash
Executable File
16 lines
416 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# Source shared configuration
|
|
source "$(dirname "$0")/config.sh"
|
|
|
|
MOCHA_PARALLEL=true $MOCHA_SETUP && $MOCHA_CMD \
|
|
'tests/attach/migrations/*.ts' \
|
|
'tests/attach/newVersion/*.ts' \
|
|
'tests/attach/upgradeOld/*.ts' \
|
|
'tests/attach/entities/*.ts' \
|
|
'tests/attach/others/*.ts' \
|
|
'tests/attach/updateEnts/*.ts' \
|
|
'tests/advanced/check/*.ts' \
|
|
'tests/attach/others/*.ts'
|
|
|
|
$MOCHA_CMD 'tests/attach/prepaid/*.ts' |