protocol/packages/0x.js/test/global_hooks.ts
2018-04-19 10:37:13 +09:00

8 lines
193 B
TypeScript

import { runMigrationsAsync } from '@0xproject/migrations';
import { deployer } from './utils/deployer';
before('migrate contracts', async () => {
await runMigrationsAsync(deployer);
});