We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0f615ac commit 5604476Copy full SHA for 5604476
scripts/test
@@ -14,7 +14,6 @@ evm_running() {
14
evm_start() {
15
echo "Starting our own evm instance at port $TESTRPC_PORT"
16
npx ganache-cli -m "$MNEMONIC" -i 1337 --gasLimit 8000000 --port "$TESTRPC_PORT" > /dev/null &
17
- evm_pid=$!
18
}
19
20
evm_kill() {
@@ -44,11 +43,9 @@ mkdir -p reports
44
43
if [ "$RUN_EVM" = true ]; then
45
# Run using the standalone evm instance
46
npx hardhat test --network ganache
47
- result=$?
48
else
49
# Run using the default evm
50
npx hardhat test "$@"
51
52
fi
53
54
### Cleanup
0 commit comments