hundreds-library-57018
02/03/2023, 10:32 AMbest-flower-17510
02/06/2023, 3:20 PMgray-kilobyte-89541
02/06/2023, 5:30 PMhundreds-library-57018
02/06/2023, 6:32 PMbland-salesclerk-62828
02/06/2023, 7:00 PMhundreds-library-57018
02/06/2023, 7:02 PMenough-truck-68085
02/06/2023, 7:41 PM/**
* Action that skips tests based on a given flag
* @param {Boolean} enabled represents a conditional, typically the value of a feature flag
*/
Cypress.Commands.add('onlyOn', (enabled) => {
if (enabled !== true) {
cy.state('runnable').ctx.skip();
}
});
beforeEach(() => {
// All tests will only run if some criteria is equivalent to true
cy.onlyOn(someCriteria)
})