💼 This rule is enabled in the ✅ recommended
config.
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)
})