Fix tests
This commit is contained in:
		@@ -1,7 +1,7 @@
 | 
				
			|||||||
import { assert as sharedAssert } from '@0xproject/assert';
 | 
					import { assert as sharedAssert } from '@0xproject/assert';
 | 
				
			||||||
// We need those two unused imports because they're actually used by sharedAssert which gets injected here
 | 
					// We need those two unused imports because they're actually used by sharedAssert which gets injected here
 | 
				
			||||||
// tslint:disable-next-line:no-unused-variable
 | 
					// tslint:disable-next-line:no-unused-variable
 | 
				
			||||||
import { Schema } from '@0xproject/json-schemas';
 | 
					import { Schema, SchemaValidator } from '@0xproject/json-schemas';
 | 
				
			||||||
// tslint:disable-next-line:no-unused-variable
 | 
					// tslint:disable-next-line:no-unused-variable
 | 
				
			||||||
import { BigNumber } from '@0xproject/utils';
 | 
					import { BigNumber } from '@0xproject/utils';
 | 
				
			||||||
import { Web3Wrapper } from '@0xproject/web3-wrapper';
 | 
					import { Web3Wrapper } from '@0xproject/web3-wrapper';
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -75,11 +75,14 @@ describe('EtherTokenWrapper', () => {
 | 
				
			|||||||
            const contractAddressIfExists = zeroEx.etherToken.getContractAddressIfExists();
 | 
					            const contractAddressIfExists = zeroEx.etherToken.getContractAddressIfExists();
 | 
				
			||||||
            expect(contractAddressIfExists).to.not.be.undefined();
 | 
					            expect(contractAddressIfExists).to.not.be.undefined();
 | 
				
			||||||
        });
 | 
					        });
 | 
				
			||||||
        it('should return undefined if connected to an unknown network', () => {
 | 
					        it('should throw if connected to a private network and contract addresses are not specified', () => {
 | 
				
			||||||
            const UNKNOWN_NETWORK_NETWORK_ID = 10;
 | 
					            const UNKNOWN_NETWORK_NETWORK_ID = 10;
 | 
				
			||||||
            const unknownNetworkZeroEx = new ZeroEx(web3.currentProvider, { networkId: UNKNOWN_NETWORK_NETWORK_ID });
 | 
					            expect(
 | 
				
			||||||
            const contractAddressIfExists = unknownNetworkZeroEx.etherToken.getContractAddressIfExists();
 | 
					                () =>
 | 
				
			||||||
            expect(contractAddressIfExists).to.be.undefined();
 | 
					                    new ZeroEx(web3.currentProvider, {
 | 
				
			||||||
 | 
					                        networkId: UNKNOWN_NETWORK_NETWORK_ID,
 | 
				
			||||||
 | 
					                    } as any),
 | 
				
			||||||
 | 
					            ).to.throw();
 | 
				
			||||||
        });
 | 
					        });
 | 
				
			||||||
    });
 | 
					    });
 | 
				
			||||||
    describe('#depositAsync', () => {
 | 
					    describe('#depositAsync', () => {
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -9,10 +9,10 @@ import * as Web3 from 'web3';
 | 
				
			|||||||
import { ZeroEx } from '../src/0x';
 | 
					import { ZeroEx } from '../src/0x';
 | 
				
			||||||
import { ExpirationWatcher } from '../src/order_watcher/expiration_watcher';
 | 
					import { ExpirationWatcher } from '../src/order_watcher/expiration_watcher';
 | 
				
			||||||
import { DoneCallback, Token } from '../src/types';
 | 
					import { DoneCallback, Token } from '../src/types';
 | 
				
			||||||
import { constants } from '../src/utils/constants';
 | 
					 | 
				
			||||||
import { utils } from '../src/utils/utils';
 | 
					import { utils } from '../src/utils/utils';
 | 
				
			||||||
 | 
					
 | 
				
			||||||
import { chaiSetup } from './utils/chai_setup';
 | 
					import { chaiSetup } from './utils/chai_setup';
 | 
				
			||||||
 | 
					import { constants } from './utils/constants';
 | 
				
			||||||
import { FillScenarios } from './utils/fill_scenarios';
 | 
					import { FillScenarios } from './utils/fill_scenarios';
 | 
				
			||||||
import { reportNoErrorCallbackErrors } from './utils/report_callback_errors';
 | 
					import { reportNoErrorCallbackErrors } from './utils/report_callback_errors';
 | 
				
			||||||
import { TokenUtils } from './utils/token_utils';
 | 
					import { TokenUtils } from './utils/token_utils';
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -15,6 +15,7 @@ import {
 | 
				
			|||||||
    TransferContractEventArgs,
 | 
					    TransferContractEventArgs,
 | 
				
			||||||
    ZeroEx,
 | 
					    ZeroEx,
 | 
				
			||||||
    ZeroExError,
 | 
					    ZeroExError,
 | 
				
			||||||
 | 
					    ZeroExPublicNetworkConfig,
 | 
				
			||||||
} from '../src';
 | 
					} from '../src';
 | 
				
			||||||
import { DoneCallback } from '../src/types';
 | 
					import { DoneCallback } from '../src/types';
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -1,8 +1,8 @@
 | 
				
			|||||||
export const constants = {
 | 
					export const constants = {
 | 
				
			||||||
    NULL_ADDRESS: '0x0000000000000000000000000000000000000000',
 | 
					    NULL_ADDRESS: '0x0000000000000000000000000000000000000000',
 | 
				
			||||||
    ROPSTEN_NETWORK_ID: 3,
 | 
					    ROPSTEN_NETWORK_ID: 3 as 3,
 | 
				
			||||||
    KOVAN_NETWORK_ID: 42,
 | 
					    KOVAN_NETWORK_ID: 42 as 42,
 | 
				
			||||||
    TESTRPC_NETWORK_ID: 50,
 | 
					    TESTRPC_NETWORK_ID: 50 as 50,
 | 
				
			||||||
    KOVAN_RPC_URL: 'https://kovan.infura.io/',
 | 
					    KOVAN_RPC_URL: 'https://kovan.infura.io/',
 | 
				
			||||||
    ROPSTEN_RPC_URL: 'https://ropsten.infura.io/',
 | 
					    ROPSTEN_RPC_URL: 'https://ropsten.infura.io/',
 | 
				
			||||||
    ZRX_DECIMALS: 18,
 | 
					    ZRX_DECIMALS: 18,
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user