1
0
Fork 0
mirror of https://github.com/dorny/test-reporter.git synced 2026-03-22 07:52:14 +01:00
test-reporter/src/test-parser.ts
2026-03-02 14:28:52 +01:00

11 lines
246 B
TypeScript

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