📝 Disallow commented out tests.
💼recommended config. This rule warns in the 🌐 all config.
This rule aims to prevent commented out tests.
Examples of incorrect code for this rule:
// test('foo', () => {
// expect(1).toBe(1)
// })Examples of correct code for this rule:
test('foo', () => {
expect(1).toBe(1)
})