How to skip a jest test
Skip a jest test
test.skip('should skip this test', () => {});
Skip an entire test suite
describe.skip('Skip test suite', () => {});
An alias for test.skip and describe.skip is to use xtest() and xdescribe()
Conditional skipping
test.skipIf(truthyValue)('should skip if truthy', () => {});