diff --git a/pkg/output/junit_test.go b/pkg/output/junit_test.go index 3d8e48f..044e631 100644 --- a/pkg/output/junit_test.go +++ b/pkg/output/junit_test.go @@ -98,6 +98,11 @@ metadata: t.Errorf("Test suite name should be the resource path") } continue + case "id": + if attr.Value != "1" { + t.Errorf("testsuite/@id should be 1") + } + continue case "tests": if attr.Value != "1" { t.Errorf("testsuite/@tests should be 1")