expect

Vexpect
Bun

Symbol

expect

const expect: Expect

Asserts that a value matches some criteria.

expect(1 + 1).toBe(2);
expect([1,2,3]).toContain(2);
expect(null).toBeNull();