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.ts9
1 files changed, 0 insertions, 9 deletions
diff --git a/packages/sra-report/src/utils.ts b/packages/sra-report/src/utils.ts
deleted file mode 100644
index 57c1b5af3..000000000
--- a/packages/sra-report/src/utils.ts
+++ /dev/null
@@ -1,9 +0,0 @@
-import { promisify } from '@0xproject/utils';
-import { NewmanRunSummary, run as newmanRun } from 'newman';
-
-export const utils = {
- log(...args: any[]): void {
- console.log(...args); // tslint:disable-line:no-console
- },
- newmanRunAsync: promisify<NewmanRunSummary>(newmanRun),
-};