blob: e3c9865248d43020f73553f499c6953ca790aae2 (
plain) (
blame)
1
2
3
4
5
6
7
|
import { runMigrationsAsync } from '@0xproject/migrations';
import { deployer } from './utils/deployer';
before('migrate contracts', async () => {
await runMigrationsAsync(deployer);
});
|