fix test launch script

This commit is contained in:
Joao Moreno 2016-08-26 11:52:21 +02:00
parent cd7b12b685
commit 84ccb059fa

View file

@ -32,9 +32,9 @@ export VSCODE_DEV=1
if [[ "$OSTYPE" == "darwin"* ]]; then
cd $ROOT ; ulimit -n 4096 ; ATOM_SHELL_INTERNAL_RUN_AS_NODE=1 \
"$CODE" \
node_modules/mocha/bin/_mocha $*
node_modules/mocha/bin/_mocha "$@"
else
cd $ROOT ; ATOM_SHELL_INTERNAL_RUN_AS_NODE=1 \
"$CODE" \
node_modules/mocha/bin/_mocha $*
node_modules/mocha/bin/_mocha "$@"
fi