You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
As mentioned in #127 (comment), one exception to the unsafe-to-chain-command rule is cy.wait when used with an alias:
// Example: assert status from cy.intercept() before proceedingcy.wait('@alias').its('response.statusCode').should('eq',200)
Currently the unsafe-to-chain-command is turned off for all cy.wait commands. Instead it would be most useful if the rule was applied for cy.wait commands unless they as used with an alias.