Fix imports

This commit is contained in:
Leonid Logvinov 2017-05-29 11:39:20 +02:00
parent 0848fe96cf
commit 021391744f
No known key found for this signature in database
GPG Key ID: 0DD294BFDE8C95D4
3 changed files with 5 additions and 5 deletions

View File

@ -3,7 +3,7 @@ import {Web3Wrapper} from '../web3_wrapper';
import {ECSignature, ZeroExError, ExchangeContract} from '../types'; import {ECSignature, ZeroExError, ExchangeContract} from '../types';
import {assert} from '../utils/assert'; import {assert} from '../utils/assert';
import {ContractWrapper} from './contract_wrapper'; import {ContractWrapper} from './contract_wrapper';
import * as ExchangeArtifacts from '../../artifacts/Exchange.json'; import * as ExchangeArtifacts from '../artifacts/Exchange.json';
import {ECSignatureSchema} from '../schemas/ec_signature_schema'; import {ECSignatureSchema} from '../schemas/ec_signature_schema';
export class ExchangeWrapper extends ContractWrapper { export class ExchangeWrapper extends ContractWrapper {

View File

@ -3,8 +3,8 @@ import * as chai from 'chai';
import 'mocha'; import 'mocha';
import * as BigNumber from 'bignumber.js'; import * as BigNumber from 'bignumber.js';
import ChaiBigNumber = require('chai-bignumber'); import ChaiBigNumber = require('chai-bignumber');
import {ZeroEx} from '../src/ts/0x.js'; import {ZeroEx} from '../src/0x.js';
import {constants} from '../src/ts/utils/constants'; import {constants} from '../src/utils/constants';
// Use BigNumber chai add-on // Use BigNumber chai add-on
chai.use(ChaiBigNumber()); chai.use(ChaiBigNumber());

View File

@ -3,9 +3,9 @@ import * as chai from 'chai';
import chaiAsPromised = require('chai-as-promised'); import chaiAsPromised = require('chai-as-promised');
import * as Web3 from 'web3'; import * as Web3 from 'web3';
import {web3Factory} from './utils/web3_factory'; import {web3Factory} from './utils/web3_factory';
import {ExchangeWrapper} from '../src/ts/contract_wrappers/exchange_wrapper'; import {ExchangeWrapper} from '../src/contract_wrappers/exchange_wrapper';
import {BlockchainLifecycle} from './utils/blockchain_lifecycle'; import {BlockchainLifecycle} from './utils/blockchain_lifecycle';
import {Web3Wrapper} from './../src/ts/web3_wrapper'; import {Web3Wrapper} from './../src/web3_wrapper';
const expect = chai.expect; const expect = chai.expect;
chai.use(chaiAsPromised); chai.use(chaiAsPromised);