cypress-skip-test icon indicating copy to clipboard operation
cypress-skip-test copied to clipboard

cy.skipOn not work with cypress version 9.2.0

Open stokrattt opened this issue 3 years ago • 3 comments

cy.skipOn not work with cypress version 9.2.0 When run test with this version - test loaded many time and not close

stokrattt avatar Dec 28 '21 11:12 stokrattt

Someone has a solution how to fix this plugin in new versions of Cypress

stokrattt avatar May 18 '22 07:05 stokrattt

Can you share a code sample or a reproducible example?

samtsai avatar May 25 '22 23:05 samtsai

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

stokrattt avatar May 26 '22 08:05 stokrattt