aboutsummaryrefslogtreecommitdiffstats
path: root/packages/sra-report/src/utils.ts
diff options
context:
space:
mode:
Diffstat (limited to 'packages/sra-report/src/utils.ts')
-rw-r--r--packages/sra-report/src/utils.ts6
1 files changed, 6 insertions, 0 deletions
diff --git a/packages/sra-report/src/utils.ts b/packages/sra-report/src/utils.ts
new file mode 100644
index 000000000..3a83a7ea0
--- /dev/null
+++ b/packages/sra-report/src/utils.ts
@@ -0,0 +1,6 @@
+import { promisify } from '@0xproject/utils';
+import { NewmanRunSummary, run as newmanRun } from 'newman';
+
+export const utils = {
+ newmanRunAsync: promisify<NewmanRunSummary>(newmanRun),
+};