blob: 3a83a7ea0c75e97406ba86648e84d285cfe948b3 (
plain) (
tree)
|
|
import { promisify } from '@0xproject/utils';
import { NewmanRunSummary, run as newmanRun } from 'newman';
export const utils = {
newmanRunAsync: promisify<NewmanRunSummary>(newmanRun),
};
|