Skip to content

Latest commit

 

History

History
46 lines (31 loc) · 1016 Bytes

File metadata and controls

46 lines (31 loc) · 1016 Bytes

vitest/no-standalone-expect

📝 Disallow using expect outside of it or test blocks.

💼⚠️ This rule is enabled in the ✅ recommended config. This rule warns in the 🌐 all config.

Rule Details

This rule aims to prevent the use of expect outside of it or test blocks.

Options

Name Description Type
additionalTestBlockFunctions Additional functions that should be treated as test blocks. String[]
{
  "vitest/no-standalone-expect": [
    "error",
    {
      "additionalTestBlockFunctions": ["test"]
    }
  ]
}

example:

// invalid

expect(1).toBe(1)

// valid

it('should be 1', () => {
  expect(1).toBe(1)
})