diff options
author | Leonid Logvinov <logvinov.leon@gmail.com> | 2018-01-19 21:25:18 +0800 |
---|---|---|
committer | Leonid Logvinov <logvinov.leon@gmail.com> | 2018-01-30 23:01:36 +0800 |
commit | 8269610a5c16cebda268c2497fae0adf692e4838 (patch) | |
tree | b428e7bb9741d7a4c5a7170face23a128fc90143 /packages/contracts/test/multi_sig_with_time_lock.ts | |
parent | 20c88a46d9d87835bd9ddc30374309d615a9cf9f (diff) | |
download | dexon-sol-tools-8269610a5c16cebda268c2497fae0adf692e4838.tar.gz dexon-sol-tools-8269610a5c16cebda268c2497fae0adf692e4838.tar.zst dexon-sol-tools-8269610a5c16cebda268c2497fae0adf692e4838.zip |
Remove truffle from UnlimitedAllowanceToken tests
Diffstat (limited to 'packages/contracts/test/multi_sig_with_time_lock.ts')
-rw-r--r-- | packages/contracts/test/multi_sig_with_time_lock.ts | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/packages/contracts/test/multi_sig_with_time_lock.ts b/packages/contracts/test/multi_sig_with_time_lock.ts index d41aae38b..03914786c 100644 --- a/packages/contracts/test/multi_sig_with_time_lock.ts +++ b/packages/contracts/test/multi_sig_with_time_lock.ts @@ -22,6 +22,7 @@ const expect = chai.expect; // In order to benefit from type-safety, we re-assign the global web3 instance injected by Truffle // with type `any` to a variable of type `Web3`. const web3: Web3 = (global as any).web3; +const blockchainLifecycle = new BlockchainLifecycle(constants.RPC_URL); describe('MultiSigWalletWithTimeLock', () => { const web3Wrapper = new Web3Wrapper(web3.currentProvider); @@ -47,6 +48,12 @@ describe('MultiSigWalletWithTimeLock', () => { const rpcUrl = `http://${truffleConf.networks.development.host}:${truffleConf.networks.development.port}`; rpc = new RPC(rpcUrl); }); + beforeEach(async () => { + await blockchainLifecycle.startAsync(); + }); + afterEach(async () => { + await blockchainLifecycle.revertAsync(); + }); describe('changeTimeLock', () => { it('should throw when not called by wallet', async () => { |