Skip to content

Latest commit

 

History

History
21 lines (15 loc) · 514 Bytes

File metadata and controls

21 lines (15 loc) · 514 Bytes

vitest/prefer-expect-resolves

📝 Enforce using expect().resolves over expect(await ...) syntax.

⚠️ This rule warns in the 🌐 all config.

🔧 This rule is automatically fixable by the --fix CLI option.

// bad
it('passes', async () => {
  expect(await someValue()).toBe(true)
})

// good
it('passes', async () => {
  await expect(someValue()).resolves.toBe(true)
})