Is there any way to stop all nested describes in case one of the Iterations (Test case) is failing inside one of the nested describes
how to achieve this anyone have any idea
Example
Test
Describe 1
it() {}
Describe 1.1
It1() {}
It2() {} (On Error)
It3() {} (Skip this)
Describe 1.2 (Skip this)
It12() {} (Skip this)
It22() {} (Skip this)
It33() {} (Skip this)
Describe 2 (Don't Skip this)
it() {} (Don't Skip this)
Describe 1.1
It21() {} (Don't Skip this)
It22() {} (Don't Skip this)
It23() {} (Don't Skip this)