I have three it() blocks within a describe test suite. In the first one I select from a dropdown a given value, then in the next two it() blocks I want to assess that some fields are correctly pre-populated based on the value I selected.
Besides correct assertion I want to also have some negative ones (fields that don't have to be empty). However, when Cypress detects a negative test (line 69) it jump to the next it() block instead of reading remaining assertions from that it() (see line 72).
So after a negative assertion from line 69, line 72 is never reached, but rather the next it() block is executed.
I want to make it so that it would also reach the code from line 72.
