Refactoring & cleanup of whole codebase

Improves report summary and annotations
This commit is contained in:
Michal Dorner
2021-01-31 20:47:55 +01:00
parent 07a0223ee3
commit 60b35d601a
20 changed files with 38784 additions and 33667 deletions

11
src/test-parser.ts Normal file
View File

@@ -0,0 +1,11 @@
import {TestRunResult} from './test-results'
export interface ParseOptions {
parseErrors: boolean
workDir: string
trackedFiles: string[]
}
export interface TestParser {
parse(path: string, content: string): Promise<TestRunResult>
}