Description
🚀 Feature Request
Have an ability to hide a group of tests under the same describe in HTML report
Example
No response
Motivation
In our test suite, we have a test that contains like a hundred test steps, all of which are very similar and test the same feature with different parameters. Test steps are not dependant upon each other, and can be parallelized.
An obvious improvement would be to convert the steps into individual tests. It will improve reliability and stability. However, we don't want to do that, because it would make test reports hard to navigate and sort through - instead of, say, 30 tests for the whole project, where each test is its own major piece of functionality, we'll get 129 tests, where 29 tests are their own pieces of functionality, and 100 are the same functionality that is overrepresented in the report for no reason.
Would be nice to be able to group/hide those tests under the same describe, so that HTML record main page would have only one row for them, and not 100.