aboutsummaryrefslogtreecommitdiffstats
path: root/packages/typescript-typings/types/newman/index.d.ts
blob: bea9ac1602d2aad66630e3e30ceb10b6ac6585fa (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
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?: (err: Error | null, summary: NewmanRunSummary) => void): void;
}