diff options
author | Leonid <logvinov.leon@gmail.com> | 2017-05-29 17:42:44 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-05-29 17:42:44 +0800 |
commit | 3819030a40af3d1cd2a9afddb125055c7e1e1ace (patch) | |
tree | a2c0299fb3f4180bffc7901ec3e4a9144190fbf6 /test | |
parent | 62cc3b919c73b7726793808e3b9631dba41cef28 (diff) | |
parent | 209d8483cf48a87a8e90de2b9a5be840dfc23613 (diff) | |
download | dexon-sol-tools-3819030a40af3d1cd2a9afddb125055c7e1e1ace.tar dexon-sol-tools-3819030a40af3d1cd2a9afddb125055c7e1e1ace.tar.gz dexon-sol-tools-3819030a40af3d1cd2a9afddb125055c7e1e1ace.tar.bz2 dexon-sol-tools-3819030a40af3d1cd2a9afddb125055c7e1e1ace.tar.lz dexon-sol-tools-3819030a40af3d1cd2a9afddb125055c7e1e1ace.tar.xz dexon-sol-tools-3819030a40af3d1cd2a9afddb125055c7e1e1ace.tar.zst dexon-sol-tools-3819030a40af3d1cd2a9afddb125055c7e1e1ace.zip |
Merge pull request #15 from 0xProject/rm-ts
Remove typescript folder
Diffstat (limited to 'test')
-rw-r--r-- | test/0x.js_test.ts | 4 | ||||
-rw-r--r-- | test/contract_wrapper_test.ts | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/test/0x.js_test.ts b/test/0x.js_test.ts index 9c61c3e10..5dbb781ab 100644 --- a/test/0x.js_test.ts +++ b/test/0x.js_test.ts @@ -3,8 +3,8 @@ import * as chai from 'chai'; import 'mocha'; import * as BigNumber from 'bignumber.js'; import ChaiBigNumber = require('chai-bignumber'); -import {ZeroEx} from '../src/ts/0x.js'; -import {constants} from '../src/ts/utils/constants'; +import {ZeroEx} from '../src/0x.js'; +import {constants} from '../src/utils/constants'; // Use BigNumber chai add-on chai.use(ChaiBigNumber()); diff --git a/test/contract_wrapper_test.ts b/test/contract_wrapper_test.ts index 67dae3a4e..4ff56ea3e 100644 --- a/test/contract_wrapper_test.ts +++ b/test/contract_wrapper_test.ts @@ -3,9 +3,9 @@ import * as chai from 'chai'; import chaiAsPromised = require('chai-as-promised'); import * as Web3 from 'web3'; 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 {Web3Wrapper} from './../src/ts/web3_wrapper'; +import {Web3Wrapper} from './../src/web3_wrapper'; const expect = chai.expect; chai.use(chaiAsPromised); |