Hey guys and gals,
Is it possible to skip Scenarios from inside? From what I read it’s not, but maybe I missed something.
Thanks!
Hey guys and gals,
Is it possible to skip Scenarios from inside? From what I read it’s not, but maybe I missed something.
Thanks!
No, it is not possible to skip inside.
I use this trick to skip programmatically:
(isServiceDown() ? xScenario : Scenario)('My Scenario', {I} => {
// My test code
})
Thanks! Doesn’t look clean per se (not your bad!) but better than nothing