-
Notifications
You must be signed in to change notification settings - Fork 107
Description
Is your feature request related to a problem? Please describe.
I have a few test suites (*.test.[tj]s
files) that have over 100 tests that are grouped with the describe
function. These tests go through a sequence of steps in a workflow and check to make sure each step is done correctly. Each describe
group is a different iteration of the steps.
jest-html-reporters shows these flattened out to show "description -> test". When I expand one of the files that follow that workflow, I end up with a very long list of tests that are clipped by the describe
name and the test is cut off.
Describe the solution you'd like
A way to collapse test groups the same way test suites are grouped together. with an expand button.
Describe alternatives you've considered
Splitting my test into smaller chunks of files. It doesn't make a lot of logical sense to do that in my case.