From 0791e6639a52f04946e11adc51ea1e7dd5b82dca Mon Sep 17 00:00:00 2001 From: Francisco Giordano Date: Fri, 30 Jun 2017 15:52:11 -0300 Subject: [PATCH] add extra arguments to test command for development testing --- scripts/test.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/test.sh b/scripts/test.sh index cbbb6e15e..5314877d2 100755 --- a/scripts/test.sh +++ b/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