6 lines
85 B
Bash
6 lines
85 B
Bash
|
if [ "$1" = "" ]; then
|
||
|
npm run paralleltest
|
||
|
else
|
||
|
npm run singletest $1 $2
|
||
|
fi
|