one more test for undefined

This commit is contained in:
Steve Klebanoff
2018-12-14 15:24:01 -08:00
parent 5981823ac1
commit ab10119c5a

View File

@@ -83,7 +83,12 @@ describe('assetDataUtil', () => {
assetUtils.assetBuyerErrorMessage(WAX_ASSET, new InsufficientAssetLiquidityError(amountAvailable)),
).toEqual('There are only 3 WAX available to buy');
});
it('should generic message when amount available rounds to zero', () => {
it('should return generic message when InsufficientAssetLiquidityError contains undefined value', () => {
expect(assetUtils.assetBuyerErrorMessage(ZRX_ASSET, new InsufficientAssetLiquidityError())).toEqual(
'Not enough ZRX available',
);
});
it('should return generic message when amount available rounds to zero', () => {
const amountAvailable = Web3Wrapper.toBaseUnitAmount(new BigNumber(0.002), 18);
expect(
assetUtils.assetBuyerErrorMessage(ZRX_ASSET, new InsufficientAssetLiquidityError(amountAvailable)),