Member Junction
    Preparing search index...

    Comparison data between two test suite runs

    interface TestRunComparison {
        durationDiff: number | null;
        runA:
            | {
                cost: number
                | null;
                duration: number | null;
                score: number | null;
                status: string;
            }
            | null;
        runB: | {
            cost: number
            | null;
            duration: number | null;
            score: number | null;
            status: string;
        }
        | null;
        scoreDiff: number
        | null;
        statusChanged: boolean;
        testId: string;
        testName: string;
    }
    Index

    Properties

    durationDiff: number | null
    runA:
        | {
            cost: number
            | null;
            duration: number | null;
            score: number | null;
            status: string;
        }
        | null
    runB:
        | {
            cost: number
            | null;
            duration: number | null;
            score: number | null;
            status: string;
        }
        | null
    scoreDiff: number | null
    statusChanged: boolean
    testId: string
    testName: string