Skip to content

Latest commit

 

History

History
25 lines (17 loc) · 517 Bytes

File metadata and controls

25 lines (17 loc) · 517 Bytes

ava/no-commented-tests

📝 Disallow commented-out tests.

⚠️ This rule warns in the ✅ recommended config.

Commented-out tests are invisible to the test runner and easy to forget about. Use test.skip() instead, which is visible in the test results.

Examples

import test from 'ava';

// ❌
// test('foo', t => {
// 	t.pass();
// });

// ✅
test.skip('foo', t => {
	t.pass();
});