Add support for loading test results from artifacts

This commit is contained in:
Michal Dorner
2021-02-15 15:18:24 +01:00
parent 71f2f95ef0
commit 3510d9ac27
19 changed files with 11665 additions and 338 deletions

View File

@@ -0,0 +1,13 @@
export interface ReportInput {
[reportName: string]: FileContent[]
}
export interface FileContent {
file: string
content: string
}
export interface InputProvider {
load(): Promise<ReportInput>
listTrackedFiles(): Promise<string[]>
}