aboutsummaryrefslogtreecommitdiffstats
path: root/packages/sra-report/src/globals.d.ts
diff options
context:
space:
mode:
authorBrandon Millman <brandon@0xproject.com>2018-03-20 01:28:02 +0800
committerGitHub <noreply@github.com>2018-03-20 01:28:02 +0800
commitc7c12371ef581920cbb10cc4586de17cdaa333f6 (patch)
tree40daa2b500f20078d31c9ee864f936c4b7bb2a3d /packages/sra-report/src/globals.d.ts
parent2a438419ab3bc32dba43918cf2eb480439ef81de (diff)
parentfb40b105015a20bb4359a3360258c9f85c495744 (diff)
downloaddexon-sol-tools-@0xproject/deployer@0.3.3.tar.gz
dexon-sol-tools-@0xproject/deployer@0.3.3.tar.zst
dexon-sol-tools-@0xproject/deployer@0.3.3.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/globals.d.ts')
-rw-r--r--packages/sra-report/src/globals.d.ts24
1 files changed, 23 insertions, 1 deletions
diff --git a/packages/sra-report/src/globals.d.ts b/packages/sra-report/src/globals.d.ts
index 0d3beb446..817d1534b 100644
--- a/packages/sra-report/src/globals.d.ts
+++ b/packages/sra-report/src/globals.d.ts
@@ -1,6 +1,28 @@
+declare module 'dirty-chai';
+
declare module 'newman' {
+ export interface NewmanRunSummary {
+ run: NewmanRun;
+ }
+ export interface NewmanRun {
+ executions: NewmanRunExecution[];
+ }
+ export interface NewmanRunExecution {
+ item: NewmanRunExecutionItem;
+ assertions: NewmanRunExecutionAssertion[];
+ }
+ export interface NewmanRunExecutionItem {
+ name: string;
+ }
+ export interface NewmanRunExecutionAssertion {
+ assertion: string;
+ error: NewmanRunExecutionAssertionError;
+ }
+ export interface NewmanRunExecutionAssertionError {
+ message: string;
+ }
// tslint:disable-next-line:completed-docs
- export function run(options: any, callback?: () => void): void;
+ export function run(options: any, callback?: (err: Error | null, summary: NewmanRunSummary) => void): void;
}
declare module '*.json' {