Search the reference...
/
Symbol
Asserts that a value matches some criteria.
expect(1 + 1).toBe(2); expect([1,2,3]).toContain(2); expect(null).toBeNull();