Add support for java-junit

This commit is contained in:
Michal Dorner
2021-03-07 22:06:12 +01:00
parent 4129c2a0bf
commit 16adfe9b7e
16 changed files with 14390 additions and 5 deletions

View File

@@ -4,10 +4,6 @@ export interface JunitReport {
export interface TestSuites {
$: {
name: string
tests: string
failures: string // assertion failed
errors: string // unhandled exception during test execution
time: string
}
testsuite?: TestSuite[]