Disallow disabled tests (vitest/no-disabled-tests) ⚠️ This rule warns in the 🌐 all config. Rule Details This rule disallows disabled tests. Examples of incorrect code for this rule: test.skip('foo', () => { // ... }) Examples of correct code for this rule: test('foo', () => { // ... })