I have a medium-sized test suite which contains various tests with various tags. For example:
- TestClassOne (Tags: unit, api)
- TestClassTwo (Tags: integration, api)etc.
I looked into the produced HTML reports for JUnit 5 and saw, to my great disappointment, that these tags are not included in any way in the report.
It would be great if I could, for example:
- See all tags for which tests were executed (and which tests)
- See the duration for all tests of a given tag
- See other tag-related statistics
in my reports.
Is this currently possible?