tokenbridge/ui-e2e/run-tests.sh
2019-06-04 09:11:56 +02:00

13 lines
200 B
Bash
Executable File

#!/usr/bin/env bash
cd $(dirname $0)
../e2e-commons/up.sh oracle ui ui-deploy
node ./scripts/blocks.js &
yarn mocha -b ./test.js
rc=$?
if [ $CI ]; then exit $rc; fi
../e2e-commons/down.sh
exit $rc