diff options
Diffstat (limited to 'packages/0x.js/test/global_hooks.ts')
-rw-r--r-- | packages/0x.js/test/global_hooks.ts | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/packages/0x.js/test/global_hooks.ts b/packages/0x.js/test/global_hooks.ts new file mode 100644 index 000000000..e3c986524 --- /dev/null +++ b/packages/0x.js/test/global_hooks.ts @@ -0,0 +1,7 @@ +import { runMigrationsAsync } from '@0xproject/migrations'; + +import { deployer } from './utils/deployer'; + +before('migrate contracts', async () => { + await runMigrationsAsync(deployer); +}); |