Skip to content
This repository has been archived by the owner on Nov 26, 2020. It is now read-only.

Update INSTRUCTIONS.md #117

Open
wants to merge 1 commit into
base: 2017-02-21
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion INSTRUCTIONS.md
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ successful for this workshop
`expect({a: {b: 'c'}, d: 'e'}).toEqual({a: {b: 'c'}, d: 'e'})`
* [`toMatchObject`](https://facebook.github.io/jest/docs/en/expect.html#tomatchobjectobject)
is similar to `toEqual`, but for partial equality:
`expect({a: {b: 'c'}, d: 'e'}).toEqual({d: 'e'})`
`expect({a: {b: 'c'}, d: 'e'}).toMatchObject({d: 'e'})`
* [`toHaveBeenCalledTimes`](https://facebook.github.io/jest/docs/en/expect.html#tohavebeencalledtimesnumber)
is a jest mock function (`jest.fn()`) assertion:
`expect(mockFn).toHaveBeenCalledTimes(0)`
Expand Down