aboutsummaryrefslogtreecommitdiffstats
path: root/packages/0x.js/test/0x.js_test.ts
diff options
context:
space:
mode:
authorFabio Berger <me@fabioberger.com>2018-04-19 10:28:18 +0800
committerGitHub <noreply@github.com>2018-04-19 10:28:18 +0800
commit4bc65faf1ab2c753da0989088852ebf7281fd7de (patch)
tree40925c2880764b02320903d4bc61d4b5cae59530 /packages/0x.js/test/0x.js_test.ts
parent8634551f53bac9769e866b9a2f6f7d0dbd203704 (diff)
parentd1d26f8bf6da4d47df026f509a51d2be62cf1800 (diff)
downloaddexon-sol-tools-4bc65faf1ab2c753da0989088852ebf7281fd7de.tar
dexon-sol-tools-4bc65faf1ab2c753da0989088852ebf7281fd7de.tar.gz
dexon-sol-tools-4bc65faf1ab2c753da0989088852ebf7281fd7de.tar.bz2
dexon-sol-tools-4bc65faf1ab2c753da0989088852ebf7281fd7de.tar.lz
dexon-sol-tools-4bc65faf1ab2c753da0989088852ebf7281fd7de.tar.xz
dexon-sol-tools-4bc65faf1ab2c753da0989088852ebf7281fd7de.tar.zst
dexon-sol-tools-4bc65faf1ab2c753da0989088852ebf7281fd7de.zip
Merge pull request #526 from 0xProject/fix/expiration-watcher
Fix expiration watcher comparator
Diffstat (limited to 'packages/0x.js/test/0x.js_test.ts')
-rw-r--r--packages/0x.js/test/0x.js_test.ts7
1 files changed, 0 insertions, 7 deletions
diff --git a/packages/0x.js/test/0x.js_test.ts b/packages/0x.js/test/0x.js_test.ts
index de5a6be58..838ee7080 100644
--- a/packages/0x.js/test/0x.js_test.ts
+++ b/packages/0x.js/test/0x.js_test.ts
@@ -1,9 +1,4 @@
-import { Deployer } from '@0xproject/deployer';
import { BlockchainLifecycle, devConstants, web3Factory } from '@0xproject/dev-utils';
-// HACK: This dependency is optional since it is only available when run from within
-// the monorepo. tslint doesn't handle optional dependencies
-// tslint:disable-next-line:no-implicit-dependencies
-import { runMigrationsAsync } from '@0xproject/migrations';
import { BigNumber } from '@0xproject/utils';
import * as chai from 'chai';
import * as _ from 'lodash';
@@ -15,7 +10,6 @@ import { ApprovalContractEventArgs, LogWithDecodedArgs, Order, TokenEvents, Zero
import { chaiSetup } from './utils/chai_setup';
import { constants } from './utils/constants';
-import { deployer } from './utils/deployer';
import { TokenUtils } from './utils/token_utils';
import { provider, web3Wrapper } from './utils/web3_wrapper';
@@ -28,7 +22,6 @@ const SHOULD_ADD_PERSONAL_MESSAGE_PREFIX = false;
describe('ZeroEx library', () => {
let zeroEx: ZeroEx;
before(async () => {
- await runMigrationsAsync(deployer);
const config = {
networkId: constants.TESTRPC_NETWORK_ID,
};