10 lines
217 B
Bash
Executable File
10 lines
217 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# Source shared configuration
|
|
source "$(dirname "$0")/config.sh"
|
|
|
|
MOCHA_PARALLEL=true $MOCHA_SETUP \
|
|
&& $MOCHA_CMD \
|
|
'tests/attach/basic/*.ts' \
|
|
'tests/attach/upgrade/*.ts' \
|
|
'tests/attach/downgrade/*.ts' |