Add support for java-junit

This commit is contained in:
Michal Dorner 2021-03-07 22:06:12 +01:00
parent 4129c2a0bf
commit 16adfe9b7e
No known key found for this signature in database
GPG key ID: 9EEE04B48DA36786
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[]