I'd like to see an option to combine serial tests and parallel tests. That would allow following scenario:
- Do one test (that in sequence)
- Do a bunch of parallel tests after the first test
- Do another (single) test in the sequence
- Finish with another bunch of parallel tests that run after all previous tests
Here's a draft of what I'd like to accomplish, to have parallel tests after some required test:

But the describe block marked with parallel doesn't show up in the UI mode (and won't run)

And if I remove the parallel in the second describe block tests appear, but they run in sequence

I'd like to see an option to combine serial tests and parallel tests. That would allow following scenario:
Here's a draft of what I'd like to accomplish, to have parallel tests after some required test:
But the
describeblock marked withparalleldoesn't show up in the UI mode (and won't run)And if I remove the
parallelin the seconddescribeblock tests appear, but they run in sequence