From 7d7bef2b1a83a570be58c8c0c90c9e338c3b93f3 Mon Sep 17 00:00:00 2001 From: Leonid Logvinov Date: Mon, 3 Jul 2017 18:26:31 -0700 Subject: Handle errors from pseudo-async subscription tests --- test/token_wrapper_test.ts | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'test/token_wrapper_test.ts') diff --git a/test/token_wrapper_test.ts b/test/token_wrapper_test.ts index 4a20141db..c5a08dc43 100644 --- a/test/token_wrapper_test.ts +++ b/test/token_wrapper_test.ts @@ -277,7 +277,7 @@ describe('TokenWrapper', () => { done(); }); await zeroEx.token.transferAsync(tokenAddress, coinbase, addressWithoutFunds, transferAmount); - })(); + })().catch(done); }); it('Should receive the Approval event when an order is cancelled', (done: DoneCallback) => { (async () => { @@ -294,7 +294,7 @@ describe('TokenWrapper', () => { done(); }); await zeroEx.token.setAllowanceAsync(tokenAddress, coinbase, addressWithoutFunds, allowanceAmount); - })(); + })().catch(done); }); it('Outstanding subscriptions are cancelled when zeroEx.setProviderAsync called', (done: DoneCallback) => { (async () => { @@ -315,7 +315,7 @@ describe('TokenWrapper', () => { done(); }); await zeroEx.token.transferAsync(tokenAddress, coinbase, addressWithoutFunds, transferAmount); - })(); + })().catch(done); }); it('Should stop watch for events when stopWatchingAsync called on the eventEmitter', (done: DoneCallback) => { (async () => { @@ -327,7 +327,7 @@ describe('TokenWrapper', () => { await eventSubscriptionToBeStopped.stopWatchingAsync(); await zeroEx.token.transferAsync(tokenAddress, coinbase, addressWithoutFunds, transferAmount); done(); - })(); + })().catch(done); }); it('Should wrap all event args BigNumber instances in a newer version of BigNumber', (done: DoneCallback) => { (async () => { @@ -339,7 +339,7 @@ describe('TokenWrapper', () => { done(); }); await zeroEx.token.transferAsync(tokenAddress, coinbase, addressWithoutFunds, transferAmount); - })(); + })().catch(done); }); }); }); -- cgit v1.2.3