* Checks that a value is what you expect. It calls `Object.is` to compare values. * Don't use `toBe` with floating-point numbers.
(expected: unknown)
| 151 | * Don't use `toBe` with floating-point numbers. |
| 152 | */ |
| 153 | toBe(expected: unknown): R; |
| 154 | /** |
| 155 | * Using exact equality with floating point numbers is a bad idea. |
| 156 | * Rounding means that intuitive things fail. |
no outgoing calls