mirror of
https://github.com/dorny/test-reporter.git
synced 2025-12-15 13:57:09 +01:00
8 lines
241 B
TypeScript
8 lines
241 B
TypeScript
import {ParseOptions} from '../../test-parser'
|
|
import {JavaJunitParser} from '../java-junit/java-junit-parser'
|
|
|
|
export class SwiftXunitParser extends JavaJunitParser {
|
|
constructor(readonly options: ParseOptions) {
|
|
super(options)
|
|
}
|
|
}
|