I have a bunch of test cases that I want to skip while running in a specific environment. I looked a lot through the documentation online. I couldn’t find a skip
or ignore
option.
How do you skip a test case?
I have a bunch of test cases that I want to skip while running in a specific environment. I looked a lot through the documentation online. I couldn’t find a skip
or ignore
option.
How do you skip a test case?
Hi there,
can you clarify what you mean by test case?
There is no built-in support for this, but you can implement the logic yourself in JS and use environment variables to control it. Take a look at this answer for the idea.