cypress-skip-test
cypress-skip-test copied to clipboard
cy.skipOn not work with cypress version 9.2.0
cy.skipOn not work with cypress version 9.2.0 When run test with this version - test loaded many time and not close
Someone has a solution how to fix this plugin in new versions of Cypress
Can you share a code sample or a reproducible example?
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