cypress-skip-test
cypress-skip-test copied to clipboard
Simple commands to skip a test based on platform, browser or a url
[](https://renovatebot.com) This PR contains the following updates: | Update | Change | |---|---| | lockFileMaintenance | All locks refreshed | 🔧 This Pull Request updates lock files to use...
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...
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...
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)  Also, in the Dashboard  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...