diff options
author | Leonid <logvinov.leon@gmail.com> | 2017-06-10 19:57:04 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-06-10 19:57:04 +0800 |
commit | 669396e7a97c8db9f3195079fd30afc1062be039 (patch) | |
tree | b1ecf83f2c66fd273fef915efc51c0a68016d70a | |
parent | 03a4ce90fc84edb504a095c4dee04b7efdac8d34 (diff) | |
parent | 0e971fcc89735f2c0c681a43a53904890b965faa (diff) | |
download | dexon-sol-tools-669396e7a97c8db9f3195079fd30afc1062be039.tar dexon-sol-tools-669396e7a97c8db9f3195079fd30afc1062be039.tar.gz dexon-sol-tools-669396e7a97c8db9f3195079fd30afc1062be039.tar.bz2 dexon-sol-tools-669396e7a97c8db9f3195079fd30afc1062be039.tar.lz dexon-sol-tools-669396e7a97c8db9f3195079fd30afc1062be039.tar.xz dexon-sol-tools-669396e7a97c8db9f3195079fd30afc1062be039.tar.zst dexon-sol-tools-669396e7a97c8db9f3195079fd30afc1062be039.zip |
Merge branch 'master' into remove-console-trash
-rw-r--r-- | test/exchange_wrapper_test.ts | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/test/exchange_wrapper_test.ts b/test/exchange_wrapper_test.ts index 6a511e68d..1b97d7b05 100644 --- a/test/exchange_wrapper_test.ts +++ b/test/exchange_wrapper_test.ts @@ -643,6 +643,22 @@ describe('ExchangeWrapper', () => { ); })(); }); + it('Should receive the LogCancel event when an order is cancelled', (done: DoneCallback) => { + (async () => { + const subscriptionOpts: SubscriptionOpts = { + fromBlock: 0, + toBlock: 'latest', + }; + await zeroEx.exchange.subscribeAsync(ExchangeEvents.LogCancel, subscriptionOpts, + indexFilterValues, (err: Error, event: ContractEvent) => { + expect(err).to.be.null(); + expect(event).to.not.be.undefined(); + done(); + }); + const cancelTakerAmountInBaseUnits = new BigNumber(1); + await zeroEx.exchange.cancelOrderAsync(signedOrder, cancelTakerAmountInBaseUnits); + })(); + }); it('Outstanding subscriptions are cancelled when zeroEx.setProviderAsync called', (done: DoneCallback) => { (async () => { const subscriptionOpts: SubscriptionOpts = { |