mirror of
https://github.com/dorny/test-reporter.git
synced 2026-02-02 19:25:22 -08:00
Refactoring & cleanup of whole codebase
Improves report summary and annotations
This commit is contained in:
11
src/test-parser.ts
Normal file
11
src/test-parser.ts
Normal file
@@ -0,0 +1,11 @@
|
||||
import {TestRunResult} from './test-results'
|
||||
|
||||
export interface ParseOptions {
|
||||
parseErrors: boolean
|
||||
workDir: string
|
||||
trackedFiles: string[]
|
||||
}
|
||||
|
||||
export interface TestParser {
|
||||
parse(path: string, content: string): Promise<TestRunResult>
|
||||
}
|
||||
Reference in New Issue
Block a user