Hi All,
Is there any way to mark a test(s) as pending? I have a class that includes a bunch of tests, but I want to disable running them now and enable them after a couple of month.
Thanks,
Hi All,
Is there any way to mark a test(s) as pending? I have a class that includes a bunch of tests, but I want to disable running them now and enable them after a couple of month.
Thanks,
The only way I could think of is to remove those scenarios from the scenario chain within the class.
scenario("MyScenario")
.exec(Home.homePage, Stub.*scenario*, Working.*scenario*, Pending.*scenario*)
remove the pending scenario and replace it with stub method.
Thanks. I’ll try it