8d0e70359f
* Remove ERC20_TOKEN_ADDRESS from env variables * Do not check erc20 token address for native-to-erc * Rename ERC20_TOKEN_ADDRESS to bridgeableTokenAddress
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 deploy oracle ui blocks
|
|
|
|
yarn mocha -b ./test.js
|
|
rc=$?
|
|
|
|
../e2e-commons/down.sh
|
|
exit $rc
|