Skip to content

Commit

Permalink
lint docs
Browse files Browse the repository at this point in the history
  • Loading branch information
quantizor committed Mar 4, 2018
1 parent bb60ca3 commit 7ed2010
Showing 1 changed file with 11 additions and 11 deletions.
22 changes: 11 additions & 11 deletions docs/ExpectAPI.md
Original file line number Diff line number Diff line change
Expand Up @@ -275,32 +275,32 @@ actually gets called.

### `expect.not.arrayContaining(array)`

`expect.not.arrayContaining(array)` matches a received array which contains none of
the elements in the expected array. That is, the expected array **is not a subset**
of the received array.
`expect.not.arrayContaining(array)` matches a received array which contains none
of the elements in the expected array. That is, the expected array **is not a
subset** of the received array.

It is the inverse of `expect.arrayContaining`.

### `expect.not.objectContaining(object)`

`expect.not.objectContaining(object)` matches any received object that does not recursively
match the expected properties. That is, the expected object **is not a subset** of
the received object. Therefore, it matches a received object which contains
properties that are **not** in the expected object.
`expect.not.objectContaining(object)` matches any received object that does not
recursively match the expected properties. That is, the expected object **is not
a subset** of the received object. Therefore, it matches a received object which
contains properties that are **not** in the expected object.

It is the inverse of `expect.objectContaining`.

### `expect.not.stringContaining(string)`

`expect.not.stringContaining(string)` matches any received string that does not contain the
exact expected string.
`expect.not.stringContaining(string)` matches any received string that does not
contain the exact expected string.

It is the inverse of `expect.stringContaining`.

### `expect.not.stringMatching(regexp)`

`expect.not.stringMatching(regexp)` matches any received string that does not match the
expected regexp.
`expect.not.stringMatching(regexp)` matches any received string that does not
match the expected regexp.

It is the inverse of `expect.stringMatching`.

Expand Down

0 comments on commit 7ed2010

Please sign in to comment.