Interface TestResult

interface TestResult {
    error?: Error;
    group?: string;
    time: number;
    title: string;
    trials: number;
}

Properties

error?: Error

Error, failure reason

group?: string

Parent group ID/title.

time: number

Time taken (incl. retries) in milliseconds (rounded)

title: string

Test title/descriptor

trials: number

Number of trials taken

Generated using TypeDoc