11 lines
147 B
Bash
Executable File
11 lines
147 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=$?
|
|
|
|
../e2e-commons/down.sh
|
|
exit $rc
|