Skip to content

Commit

Permalink
docs: update expect.anything() example (#5007)
Browse files Browse the repository at this point in the history
* docs: update expect.anything() example

Fixes: #4916

* changelog: update with #5007
  • Loading branch information
alopezsanchez authored and cpojer committed Dec 4, 2017
1 parent 4f1113c commit ea3fabc
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -149,6 +149,8 @@
alias.
* `[docs]` Include missing dependency in TestEnvironment sample code
* `[docs]` Add clarification for hook execution order
* `[docs]` Update `expect.anything()` sample code
([#5007](https://github.com/facebook/jest/pull/5007))

## jest 21.2.1

Expand Down
2 changes: 1 addition & 1 deletion docs/ExpectAPI.md
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,7 @@ you want to check that a mock function is called with a non-null argument:
```js
test('map calls its argument with a non-null argument', () => {
const mock = jest.fn();
[1].map(mock);
[1].map(x => mock(x));
expect(mock).toBeCalledWith(expect.anything());
});
```
Expand Down

0 comments on commit ea3fabc

Please sign in to comment.