Skip to content

Instantly share code, notes, and snippets.

@JimmyLv
Created January 6, 2021 07:07
Show Gist options
  • Select an option

  • Save JimmyLv/57cc766c77b6117dbf5bc99f677fd871 to your computer and use it in GitHub Desktop.

Select an option

Save JimmyLv/57cc766c77b6117dbf5bc99f677fd871 to your computer and use it in GitHub Desktop.
Created with Copy to Gist
describe('contains test', () => {
it('should return true', () => {
const arr = [ { a: 1 }, { b: 2 }, { c: 3 } ]
expect(arr).toContainEqual( // Compare values only.
{ b: 2 }
)
})
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment