We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 53427f0 commit 84a53c1Copy full SHA for 84a53c1
docs/rules/prefer-equality-matcher.md
@@ -30,5 +30,5 @@ Examples of **correct** code for this rule:
30
```js
31
expect(x).toBe(5);
32
expect(name).not.toEqual('Carl');
33
-expect(myObj).toStrictEqual(thatObj);
+expect(myObj).not.toStrictEqual(thatObj);
34
```
0 commit comments