Does Jest offer any sort of "pending test" like those in Mocha?
Mocha's pending tests let us write placeholder tests which are helpful when designing a test suite:
describe('pending tests', function() {
it('should be a real test someday');
});
Pending tests aren't converted by jest-codemods and pass through unchanged.
Since the answers above were given this has changed. .skip
is technically not a pending test. Jest now provides test.todo("description")
without the callback to declare a test is yet to be written (ref).
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With