From 641d3b75eadf8f3330d60ca26b7edc06a871219c Mon Sep 17 00:00:00 2001 From: Leonid Date: Tue, 24 Oct 2017 16:40:38 +0300 Subject: Revert "Reduce final bundle size by 11% (82kB)" --- test/0x.js_test.ts | 2 +- test/exchange_wrapper_test.ts | 13 +++++-------- test/token_registry_wrapper_test.ts | 2 +- test/utils/order_factory.ts | 2 +- test/utils/token_utils.ts | 2 +- 5 files changed, 9 insertions(+), 12 deletions(-) (limited to 'test') diff --git a/test/0x.js_test.ts b/test/0x.js_test.ts index 0c1d1a68d..dd5dd19b1 100644 --- a/test/0x.js_test.ts +++ b/test/0x.js_test.ts @@ -1,4 +1,4 @@ -import {_} from '../src/utils/lodash'; +import * as _ from 'lodash'; import * as chai from 'chai'; import {chaiSetup} from './utils/chai_setup'; import 'mocha'; diff --git a/test/exchange_wrapper_test.ts b/test/exchange_wrapper_test.ts index 2cfab2d65..f3f16643e 100644 --- a/test/exchange_wrapper_test.ts +++ b/test/exchange_wrapper_test.ts @@ -304,11 +304,11 @@ describe('ExchangeWrapper', () => { orderFillBatch = [ { signedOrder, - takerTokenFillAmount, + takerTokenFillAmount: takerTokenFillAmount, }, { signedOrder: anotherSignedOrder, - takerTokenFillAmount, + takerTokenFillAmount: takerTokenFillAmount, }, ]; }); @@ -655,8 +655,7 @@ describe('ExchangeWrapper', () => { ExchangeEvents.LogFill, indexFilterValues, callback, ); await zeroEx.exchange.fillOrderAsync( - signedOrder, takerTokenFillAmountInBaseUnits, shouldThrowOnInsufficientBalanceOrAllowance, - takerAddress, + signedOrder, takerTokenFillAmountInBaseUnits, shouldThrowOnInsufficientBalanceOrAllowance, takerAddress, ); })().catch(done); }); @@ -692,8 +691,7 @@ describe('ExchangeWrapper', () => { ExchangeEvents.LogFill, indexFilterValues, callback, ); await zeroEx.exchange.fillOrderAsync( - signedOrder, takerTokenFillAmountInBaseUnits, shouldThrowOnInsufficientBalanceOrAllowance, - takerAddress, + signedOrder, takerTokenFillAmountInBaseUnits, shouldThrowOnInsufficientBalanceOrAllowance, takerAddress, ); })().catch(done); }); @@ -707,8 +705,7 @@ describe('ExchangeWrapper', () => { ); zeroEx.exchange.unsubscribe(subscriptionToken); await zeroEx.exchange.fillOrderAsync( - signedOrder, takerTokenFillAmountInBaseUnits, shouldThrowOnInsufficientBalanceOrAllowance, - takerAddress, + signedOrder, takerTokenFillAmountInBaseUnits, shouldThrowOnInsufficientBalanceOrAllowance, takerAddress, ); done(); })().catch(done); diff --git a/test/token_registry_wrapper_test.ts b/test/token_registry_wrapper_test.ts index b415ec1c6..6b5dd517e 100644 --- a/test/token_registry_wrapper_test.ts +++ b/test/token_registry_wrapper_test.ts @@ -1,4 +1,4 @@ -import {_} from '../src/utils/lodash'; +import * as _ from 'lodash'; import 'mocha'; import * as chai from 'chai'; import {SchemaValidator, schemas} from '0x-json-schemas'; diff --git a/test/utils/order_factory.ts b/test/utils/order_factory.ts index 30a6f376a..fc4adebd9 100644 --- a/test/utils/order_factory.ts +++ b/test/utils/order_factory.ts @@ -1,4 +1,4 @@ -import {_} from '../../src/utils/lodash'; +import * as _ from 'lodash'; import * as BigNumber from 'bignumber.js'; import {ZeroEx, SignedOrder} from '../../src'; diff --git a/test/utils/token_utils.ts b/test/utils/token_utils.ts index ab0682b32..51cb9411c 100644 --- a/test/utils/token_utils.ts +++ b/test/utils/token_utils.ts @@ -1,4 +1,4 @@ -import {_} from '../../src/utils/lodash'; +import * as _ from 'lodash'; import {Token, InternalZeroExError} from '../../src/types'; const PROTOCOL_TOKEN_SYMBOL = 'ZRX'; -- cgit v1.2.3