Current behavior
Test runner shows misleading info when more than one .should('contain') assertion is chained after .should('be.visible')
Consider following code
cy.get('[data-cy=mobile-payments-template]')
.should('be.visible')
.should('contain', 'Something')
.should('contain', '+420 737 799 983');
This is displayed incorrectly in Test runner (notice the replaced to contain Something with to be visible)

When I delete the should('be.visible') assertion, it's displayed properly

Desired behavior
Display to contain Something

Test code to reproduce
Versions
6.8.0
Current behavior
Test runner shows misleading info when more than one
.should('contain')assertion is chained after.should('be.visible')Consider following code
This is displayed incorrectly in Test runner (notice the replaced

to contain Somethingwithto be visible)When I delete the

should('be.visible')assertion, it's displayed properlyDesired behavior
Display

to contain SomethingTest code to reproduce
Versions
6.8.0