Skip to content

Commit

Permalink
docs(prefer-equality-matcher): fix !== example (#1699)
Browse files Browse the repository at this point in the history
  • Loading branch information
qqii authored Jan 16, 2025
1 parent 53427f0 commit 84a53c1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/rules/prefer-equality-matcher.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,5 +30,5 @@ Examples of **correct** code for this rule:
```js
expect(x).toBe(5);
expect(name).not.toEqual('Carl');
expect(myObj).toStrictEqual(thatObj);
expect(myObj).not.toStrictEqual(thatObj);
```

0 comments on commit 84a53c1

Please sign in to comment.