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

Simple commands to skip a test based on platform, browser or a url

Results 47 cypress-skip-test issues
Sort by recently updated
recently updated
newest added

[![WhiteSource Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com) This PR contains the following updates: | Update | Change | |---|---| | lockFileMaintenance | All locks refreshed | 🔧 This Pull Request updates lock files to use...

type: dependencies
renovate

Bumps [node-fetch](https://github.com/node-fetch/node-fetch) from 2.6.1 to 2.6.7. Release notes Sourced from node-fetch's releases. v2.6.7 Security patch release Recommended to upgrade, to not leak sensitive cookie and authentication header information to 3th...

type: dependencies

Bumps [minimist](https://github.com/substack/minimist) from 1.2.5 to 1.2.6. Commits 7efb22a 1.2.6 ef88b93 security notice for additional prototype pollution issue c2b9819 isConstructorOrProto adapted from PR bc8ecee test from prototype pollution PR See full...

type: dependencies

Currently, only after & afterEach hooks are skipped. Could we get a way how to skip the before and beforeEach hooks as well?

Ran into this little issue: When: ``` const testUsers = [ { username: 'Foo', testFeatureFoo: true, }, { username: 'Bar', }, ]; testUsers.forEach( (user) => { onlyOn(user.testFeatureFoo, () => {...

Whenever you have multiple onlyOn chained or unchained ``` cy.onlyOn( false === true).onlyOn(true === true) ``` The second condition is not evaluated as the first condition will always throw immediately...

When using `onlyOn` and `cy.onlyOn`, there's no cypress log to show the test was skipped because of the environment You just see the test is skipped and can't see why...

The image is saved on /screenshot and /videos folder as if it was an error (I only saved when fails) ![image](https://user-images.githubusercontent.com/32499737/136197467-a63b1b6c-793c-4730-b373-c0baa63cf63f.png) Also, in the Dashboard ![image](https://user-images.githubusercontent.com/32499737/136197656-a434632a-3049-4059-ac56-dee6ca26635f.png) The tests passed, it...

In v2.6.0, Typescript threw errors when `onlyOn` was imported, but worked correctly for `cy.onlyOn`. Now in v2.6.1 (after https://github.com/cypress-io/cypress-skip-test/pull/143), Typescript correctly types the `onlyOn` import, but `cy.onlyOn` does not have...

Cypress: 8.4.0/8.5.0 Node: 14.0.0 Typescript: 4.3.2 We have nested describe structure for our test as shown below: ``` describe('someTest',()=>{ let someVar; after(()=>{ someVar=null; }); before(()=> { loginApp(...); }); describe('when feature...