diff options
author | Leonid <logvinov.leon@gmail.com> | 2017-10-13 22:16:11 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-10-13 22:16:11 +0800 |
commit | 5591378245184178dd1a1997076bb1cbb17ddcb1 (patch) | |
tree | 0ce4bebb4c038748e04f791cda501543018113df /test/order_validation_test.ts | |
parent | ba654c04a086b8c4ce4330b3d6064716a4090599 (diff) | |
parent | dde2268f9fad24ad8baee88eca7aef068d05c178 (diff) | |
download | dexon-sol-tools-5591378245184178dd1a1997076bb1cbb17ddcb1.tar dexon-sol-tools-5591378245184178dd1a1997076bb1cbb17ddcb1.tar.gz dexon-sol-tools-5591378245184178dd1a1997076bb1cbb17ddcb1.tar.bz2 dexon-sol-tools-5591378245184178dd1a1997076bb1cbb17ddcb1.tar.lz dexon-sol-tools-5591378245184178dd1a1997076bb1cbb17ddcb1.tar.xz dexon-sol-tools-5591378245184178dd1a1997076bb1cbb17ddcb1.tar.zst dexon-sol-tools-5591378245184178dd1a1997076bb1cbb17ddcb1.zip |
Merge pull request #194 from 0xProject/feature/type-safe-subscriptions
Make logs fetching and subscriptions more type-safe
Diffstat (limited to 'test/order_validation_test.ts')
-rw-r--r-- | test/order_validation_test.ts | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/test/order_validation_test.ts b/test/order_validation_test.ts index 742739aaa..784fa9ec4 100644 --- a/test/order_validation_test.ts +++ b/test/order_validation_test.ts @@ -1,7 +1,6 @@ import * as chai from 'chai'; import * as Web3 from 'web3'; import * as BigNumber from 'bignumber.js'; -import promisify = require('es6-promisify'); import * as Sinon from 'sinon'; import {chaiSetup} from './utils/chai_setup'; import {web3Factory} from './utils/web3_factory'; @@ -35,7 +34,6 @@ describe('OrderValidation', () => { let orderValidationUtils: OrderValidationUtils; const fillableAmount = new BigNumber(5); const fillTakerAmount = new BigNumber(5); - const shouldThrowOnInsufficientBalanceOrAllowance = false; before(async () => { web3 = web3Factory.create(); zeroEx = new ZeroEx(web3.currentProvider); |