interface AggregatedDataForResultTrend {
    duration?: any;
    resultsByOutcome?: { [key: number]: AggregatedResultsByOutcome };
    runSummaryByState?: { [key: number]: AggregatedRunsByState };
    testResultsContext: TestResultsContext;
    totalTests?: number;
}

Properties

duration?: any

This is tests execution duration.

resultsByOutcome?: { [key: number]: AggregatedResultsByOutcome }
runSummaryByState?: { [key: number]: AggregatedRunsByState }
testResultsContext: TestResultsContext
totalTests?: number