diff options
author | Brandon Millman <brandon@0xproject.com> | 2018-03-20 01:28:02 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-03-20 01:28:02 +0800 |
commit | c7c12371ef581920cbb10cc4586de17cdaa333f6 (patch) | |
tree | 40daa2b500f20078d31c9ee864f936c4b7bb2a3d /packages/sra-report/src/index.ts | |
parent | 2a438419ab3bc32dba43918cf2eb480439ef81de (diff) | |
parent | fb40b105015a20bb4359a3360258c9f85c495744 (diff) | |
download | dexon-sol-tools-c7c12371ef581920cbb10cc4586de17cdaa333f6.tar dexon-sol-tools-c7c12371ef581920cbb10cc4586de17cdaa333f6.tar.gz dexon-sol-tools-c7c12371ef581920cbb10cc4586de17cdaa333f6.tar.bz2 dexon-sol-tools-c7c12371ef581920cbb10cc4586de17cdaa333f6.tar.lz dexon-sol-tools-c7c12371ef581920cbb10cc4586de17cdaa333f6.tar.xz dexon-sol-tools-c7c12371ef581920cbb10cc4586de17cdaa333f6.tar.zst dexon-sol-tools-c7c12371ef581920cbb10cc4586de17cdaa333f6.zip |
Merge pull request #451 from 0xProject/feature/sra-report/collection-tests@0xproject/deployer@0.3.3
Add scaffolding for sra-report collection unit tests
Diffstat (limited to 'packages/sra-report/src/index.ts')
-rw-r--r-- | packages/sra-report/src/index.ts | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/packages/sra-report/src/index.ts b/packages/sra-report/src/index.ts index e9d55ab9b..9a203b654 100644 --- a/packages/sra-report/src/index.ts +++ b/packages/sra-report/src/index.ts @@ -7,11 +7,11 @@ import * as _ from 'lodash'; import * as newman from 'newman'; import * as yargs from 'yargs'; -import * as sraReportCollectionJSON from '../postman_configs/collections/sra_report.postman_collection.json'; +import * as sraReportCollectionJSON from '../../postman_collections/sra_report.postman_collection.json'; import { postmanEnvironmentFactory } from './postman_environment_factory'; +import { utils } from './utils'; -const newmanRunAsync = promisify<void>(newman.run); const DEFAULT_NETWORK_ID = 1; const SUPPORTED_NETWORK_IDS = [1, 3, 4, 42]; @@ -96,6 +96,6 @@ const mainAsync = async () => { exportEnvironment: args.exportEnvironment, ...newmanReporterOptions, }; - await newmanRunAsync(newmanRunOptions); + await utils.newmanRunAsync(newmanRunOptions); }; mainAsync().catch(logUtils.log); |