diff options
-rw-r--r-- | test/exchange_wrapper_test.ts | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/test/exchange_wrapper_test.ts b/test/exchange_wrapper_test.ts index 6ff710dda..211c2819c 100644 --- a/test/exchange_wrapper_test.ts +++ b/test/exchange_wrapper_test.ts @@ -452,6 +452,12 @@ describe('ExchangeWrapper', () => { const remainingFillAmount = fillableAmount.minus(1); expect(anotherFilledAmount).to.be.bignumber.equal(remainingFillAmount); }); + it('should return filled amount', async () => { + const filledTakerTokenAmount = await zeroEx.exchange.fillOrdersUpToAsync( + signedOrders, fillUpToAmount, shouldCheckTransfer, takerAddress, + ); + expect(filledTakerTokenAmount).to.be.bignumber.equal(fillUpToAmount); + }); }); }); }); |