You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
443 B
21 lines
443 B
6 years ago
|
#!/usr/bin/env bash
|
||
|
|
||
|
set -e
|
||
|
set -u
|
||
|
set -o pipefail
|
||
|
|
||
|
export PATH="$PATH:./node_modules/.bin"
|
||
|
|
||
|
npm run ganache:start -- -b 2 >> /dev/null 2>&1 &
|
||
|
sleep 5
|
||
|
cd test/e2e/beta/
|
||
|
rm -rf drizzle-test
|
||
|
mkdir drizzle-test && cd drizzle-test
|
||
|
npm install truffle
|
||
|
truffle unbox drizzle
|
||
|
echo "Deploying contracts for Drizzle test..."
|
||
|
truffle compile && truffle migrate
|
||
|
BROWSER=none npm start >> /dev/null 2>&1 &
|
||
|
cd ../../../../
|
||
|
mocha test/e2e/beta/drizzle.spec
|