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