Jest.todo
Planted on
When writing test assertions in Jest, you can add .todo
to the assertions that are not yet implemented.
describe('New test suit', () => {
it.todo('Test assertion that I wanna test')
})
When writing test assertions in Jest, you can add .todo
to the assertions that are not yet implemented.
describe('New test suit', () => {
it.todo('Test assertion that I wanna test')
})