If you run the example code below, after the failure within the cy.then(), the cy.wait() in the "next text", the cy.wait() command never executes.
Example Code
context("example", function(){
it('first test', function(){
cy
.wait(10).then(function(){
expect(false).to.be.true
})
})
it('next test', function(){
cy.wait(10)
})
})
Example of Command Log

If you run the example code below, after the failure within the
cy.then(), thecy.wait()in the "next text", thecy.wait()command never executes.Example Code
Example of Command Log
