const earth = { round: true } const globe = { round: true } describe('earth', () => { it('is round', () => { expect(earth.round).toBe(true) expect(earth).not.toBe(globe) expect(earth).toEqual(globe) }) })
Last updated 5 years ago
Was this helpful?