Unverified Commit 2a37b09c by Nicolás Venturo Committed by GitHub

Improve test script. (#1675)

parent 29fa0a4c
...@@ -41,10 +41,12 @@ start_ganache() { ...@@ -41,10 +41,12 @@ start_ganache() {
if [ "$SOLIDITY_COVERAGE" = true ]; then if [ "$SOLIDITY_COVERAGE" = true ]; then
node_modules/.bin/testrpc-sc --gasLimit 0xfffffffffff --port "$ganache_port" "${accounts[@]}" > /dev/null & node_modules/.bin/testrpc-sc --gasLimit 0xfffffffffff --port "$ganache_port" "${accounts[@]}" > /dev/null &
else else
node_modules/.bin/ganache-cli --gasLimit 0xfffffffffff "${accounts[@]}" > /dev/null & node_modules/.bin/ganache-cli --gasLimit 0xfffffffffff --port "$ganache_port" "${accounts[@]}" > /dev/null &
fi fi
ganache_pid=$! ganache_pid=$!
sleep 1
} }
if ganache_running; then if ganache_running; then
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment