* This is the same as `.toBe(null)` but the error messages are a bit nicer. * So use `.toBeNull()` when you want to check that something is null.
()
| 196 | * So use `.toBeNull()` when you want to check that something is null. |
| 197 | */ |
| 198 | toBeNull(): R; |
| 199 | /** |
| 200 | * Use when you don't care what a value is, you just want to ensure a value |
| 201 | * is true in a boolean context. In JavaScript, there are six falsy values: |
no outgoing calls
no test coverage detected