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
{{ message }}
This repository has been archived by the owner on Jan 31, 2023. It is now read-only.
Before if i use
it('test', ()=>{
cy.skipOn('stage')
.......
})
this test skipped on the stage env. Now, it was not skipped (ignored cy.skipOn('stage'))
Now, work only this
skipOn('stage', ()=>{
it('test', ()=>{
.......
})
})
If we use cy.skipOn or cy.onlyOn inside test - it not work, only work when we use - outside test
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
cy.skipOn not work with cypress version 9.2.0
When run test with this version - test loaded many time and not close
The text was updated successfully, but these errors were encountered: