📝 Disallow commented-out tests.
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.
import test from 'ava';
// ❌
// test('foo', t => {
// t.pass();
// });
// ✅
test.skip('foo', t => {
t.pass();
});