mirror of
https://github.com/dorny/test-reporter.git
synced 2026-06-06 00:17:08 +00:00
11 lines
246 B
TypeScript
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>
|
|
}
|