mirror of
https://github.com/dorny/test-reporter.git
synced 2026-02-01 02:45:22 -08:00
9 lines
241 B
TypeScript
9 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)
|
|
}
|
|
}
|