KC's Workspace
    Preparing search index...
    interface TestDiagnostic {
        duration: number;
        flaky: boolean;
        heap: number | undefined;
        repeatCount: number;
        retryCount: number;
        slow: boolean;
        startTime: number;
    }
    Index

    Properties

    duration: number

    The time it takes to execute the test in ms.

    flaky: boolean

    If test passed on a second retry.

    heap: number | undefined

    The amount of memory used by the test in bytes. This value is only available if the test was executed with logHeapUsage flag.

    repeatCount: number

    The amount of times the test was repeated as configured by repeats option. This value can be lower if the test failed during the repeat and no retry is configured.

    retryCount: number

    The amount of times the test was retried.

    slow: boolean

    If the duration of the test is above slowTestThreshold.

    startTime: number

    The time in ms when the test started.