aboutsummaryrefslogtreecommitdiffstats
path: root/packages/sra-report/src/utils.ts
blob: 3a83a7ea0c75e97406ba86648e84d285cfe948b3 (plain) (blame)
1
2
3
4
5
6
import { promisify } from '@0xproject/utils';
import { NewmanRunSummary, run as newmanRun } from 'newman';

export const utils = {
    newmanRunAsync: promisify<NewmanRunSummary>(newmanRun),
};