📝 Disallow disabled tests.
all, ✅ recommended.
This rule disallows disabled tests.
Examples of incorrect code for this rule:
test.skip('foo', () => {
// ...
})Examples of correct code for this rule:
test('foo', () => {
// ...
})📝 Disallow disabled tests.
all, ✅ recommended.
This rule disallows disabled tests.
Examples of incorrect code for this rule:
test.skip('foo', () => {
// ...
})Examples of correct code for this rule:
test('foo', () => {
// ...
})