Skip to content

Latest commit

 

History

History
25 lines (15 loc) · 736 Bytes

File metadata and controls

25 lines (15 loc) · 736 Bytes

ava/no-todo-test

📝 Disallow test.todo().

⚠️ This rule warns in the ✅ 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.

Examples

import test from 'ava';

test.todo('some test'); // ❌

test('some test', t => { // ✅
	// Some implementation
});