Translations: Français
Disallow the use of test.todo()
. You might want to do this to only ship features with specs fully written and passing.
const test = require('ava');
test.todo('some test');
const test = require('ava');
test('some test', t => {
// Some implementation
});