Prettier
This commit is contained in:
		@@ -13,7 +13,7 @@ export const assert = {
 | 
			
		||||
    isValidBaseUnitAmount(variableName: string, value: BigNumber) {
 | 
			
		||||
        assert.isBigNumber(variableName, value);
 | 
			
		||||
        const isNegative = value.lessThan(0);
 | 
			
		||||
        this.assert(!isNegative, `${variableName} cannot be a negative number, found value: ${value.toNumber()}` );
 | 
			
		||||
        this.assert(!isNegative, `${variableName} cannot be a negative number, found value: ${value.toNumber()}`);
 | 
			
		||||
        const hasDecimals = value.decimalPlaces() !== 0;
 | 
			
		||||
        this.assert(
 | 
			
		||||
            !hasDecimals,
 | 
			
		||||
 
 | 
			
		||||
@@ -25,11 +25,15 @@ describe('Assertions', () => {
 | 
			
		||||
    describe('#isValidBaseUnitAmount', () => {
 | 
			
		||||
        it('should not throw for valid input', () => {
 | 
			
		||||
            const validInputs = [new BigNumber(23), new BigNumber('45000000')];
 | 
			
		||||
            validInputs.forEach(input => expect(assert.isValidBaseUnitAmount.bind(assert, variableName, input)).to.not.throw());
 | 
			
		||||
            validInputs.forEach(input =>
 | 
			
		||||
                expect(assert.isValidBaseUnitAmount.bind(assert, variableName, input)).to.not.throw(),
 | 
			
		||||
            );
 | 
			
		||||
        });
 | 
			
		||||
        it('should throw for invalid input', () => {
 | 
			
		||||
            const invalidInputs = [0, undefined, new BigNumber(3.145), 3.145, new BigNumber(-400)];
 | 
			
		||||
            invalidInputs.forEach(input => expect(assert.isValidBaseUnitAmount.bind(assert, variableName, input)).to.throw());
 | 
			
		||||
            invalidInputs.forEach(input =>
 | 
			
		||||
                expect(assert.isValidBaseUnitAmount.bind(assert, variableName, input)).to.throw(),
 | 
			
		||||
            );
 | 
			
		||||
        });
 | 
			
		||||
    });
 | 
			
		||||
    describe('#isString', () => {
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user