I\'m using Jest framework and have a test suite. I want to turn off/skip one of my tests.
Googling documentation doesn\'t give me answers.
Do you know the answ
If you'd like to skip a test in Jest, you can use test.skip:
test.skip(name, fn)
Which is also under the following aliases:
it.skip(name, fn)
or xit(name, fn)
or xtest(name, fn)
Additionally, if you'd like to skip a test suite, you can use describe.skip:
describe.skip(name, fn)
Which is also under the following alias:
xdescribe(name, fn)