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

12 lines
177 B
Bash
Executable File

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