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.
import test from 'ava';
test.todo('some test');
import test from 'ava';
test('some test', t => {
// Some implementation
});