Skip to content

Latest commit

 

History

History
27 lines (18 loc) · 419 Bytes

File metadata and controls

27 lines (18 loc) · 419 Bytes

vitest/no-disabled-tests

📝 Disallow disabled tests.

⚠️ This rule warns in the following configs: 🌐 all, ✅ recommended.

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', () => {
  // ...
})