📝 Enforce using toBe().
all config.
🔧 This rule is automatically fixable by the --fix CLI option.
import { test } from 'vitest'
test('foo', () => {
expect(1).toBe(1)
})import { test } from 'vitest'
test('foo', () => {
expect(1).toEqual(1)
})