tokenbridge/ui-e2e/run-tests.sh

12 lines
177 B
Bash
Raw Normal View History

#!/usr/bin/env bash
cd $(dirname $0)
2019-06-03 16:49:40 +03:00
../e2e-commons/up.sh oracle ui deploy blocks
yarn mocha -b ./test.js
rc=$?
if [ $CI ]; then exit $rc; fi
2019-06-03 11:11:00 +03:00
../e2e-commons/down.sh
exit $rc