mirror of
https://github.com/dorny/test-reporter.git
synced 2025-12-15 22:07:09 +01:00
11 lines
243 B
TypeScript
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>
|
|
}
|