mirror of
https://github.com/waku-org/nwaku.git
synced 2025-02-21 03:18:32 +00:00
15 lines
309 B
Bash
Executable File
15 lines
309 B
Bash
Executable File
#!/bin/sh
|
|
|
|
set -ex
|
|
npm install hardhat
|
|
touch hardhat.config.js
|
|
nohup npx hardhat node &
|
|
nimble install -y
|
|
|
|
# Wait until ganache responds
|
|
while ! curl -X POST --data '{"jsonrpc":"2.0","method":"net_version","params":[],"id":67}' localhost:8545 2>/dev/null
|
|
do
|
|
true
|
|
done
|
|
env TEST_LANG="$TEST_LANG" nimble test
|