one more test for undefined
This commit is contained in:
		@@ -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)),
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user