Browse Source

add extra arguments to test command for development testing

Francisco Giordano 8 years ago
parent
commit
0791e6639a
1 changed files with 1 additions and 1 deletions
  1. 1 1
      scripts/test.sh

+ 1 - 1
scripts/test.sh

@@ -19,7 +19,7 @@ if [ ! $trpc_running ]; then
   > /dev/null &
   trpc_pid=$!
 fi
-./node_modules/truffle/cli.js test
+./node_modules/truffle/cli.js test "$@"
 if [ ! $trpc_running ]; then
   kill -9 $trpc_pid
 fi