interface TestResultsDetailsForGroup {
    groupByValue?: any;
    results?: TestCaseResult[];
    resultsCountByOutcome?: { [key: number]: AggregatedResultsByOutcome };
    tags?: string[];
}

Properties

groupByValue?: any
results?: TestCaseResult[]
resultsCountByOutcome?: { [key: number]: AggregatedResultsByOutcome }
tags?: string[]