📝 Disallow test.todo().
recommended config.
💡 This rule is manually fixable by editor suggestions.
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'); // ❌
test('some test', t => { // ✅
// Some implementation
});