mirror of
https://github.com/dorny/test-reporter.git
synced 2026-03-22 07:52:14 +01:00
Refactoring & cleanup of whole codebase
Improves report summary and annotations
This commit is contained in:
parent
07a0223ee3
commit
60b35d601a
20 changed files with 38784 additions and 33667 deletions
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>
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue