test-reporter/src/test-parser.ts
2021-02-15 15:18:55 +01:00

11 lines
243 B
TypeScript

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