aboutsummaryrefslogtreecommitdiffstats
path: root/packages/0x.js/test/global_hooks.ts
diff options
context:
space:
mode:
authorFabio Berger <me@fabioberger.com>2018-07-12 21:53:31 +0800
committerGitHub <noreply@github.com>2018-07-12 21:53:31 +0800
commita45a29432e722b71fcfc63a8545fa43ffc29b92d (patch)
tree84fbd6c8d1fb87fd1e36dabd808ce897e346ff8c /packages/0x.js/test/global_hooks.ts
parent34a903516439ec64073cfcb10cee87a9c4db902e (diff)
parent819d069edc6ff31f8f08231b5087b125b872cf97 (diff)
downloaddexon-sol-tools-a45a29432e722b71fcfc63a8545fa43ffc29b92d.tar
dexon-sol-tools-a45a29432e722b71fcfc63a8545fa43ffc29b92d.tar.gz
dexon-sol-tools-a45a29432e722b71fcfc63a8545fa43ffc29b92d.tar.bz2
dexon-sol-tools-a45a29432e722b71fcfc63a8545fa43ffc29b92d.tar.lz
dexon-sol-tools-a45a29432e722b71fcfc63a8545fa43ffc29b92d.tar.xz
dexon-sol-tools-a45a29432e722b71fcfc63a8545fa43ffc29b92d.tar.zst
dexon-sol-tools-a45a29432e722b71fcfc63a8545fa43ffc29b92d.zip
Merge pull request #863 from 0xProject/refactor/0x.js
Refactor 0x.js
Diffstat (limited to 'packages/0x.js/test/global_hooks.ts')
-rw-r--r--packages/0x.js/test/global_hooks.ts6
1 files changed, 3 insertions, 3 deletions
diff --git a/packages/0x.js/test/global_hooks.ts b/packages/0x.js/test/global_hooks.ts
index 9d6903af5..3d74634fe 100644
--- a/packages/0x.js/test/global_hooks.ts
+++ b/packages/0x.js/test/global_hooks.ts
@@ -1,5 +1,5 @@
import { devConstants } from '@0xproject/dev-utils';
-import { runV1MigrationsAsync } from '@0xproject/migrations';
+import { runV2MigrationsAsync } from '@0xproject/migrations';
import { provider } from './utils/web3_wrapper';
@@ -12,6 +12,6 @@ before('migrate contracts', async function(): Promise<void> {
gas: devConstants.GAS_LIMIT,
from: devConstants.TESTRPC_FIRST_ADDRESS,
};
- const artifactsDir = `../migrations/artifacts/1.0.0`;
- await runV1MigrationsAsync(provider, artifactsDir, txDefaults);
+ const artifactsDir = `../migrations/artifacts/2.0.0`;
+ await runV2MigrationsAsync(provider, artifactsDir, txDefaults);
});