(expected: unknown)
| 193 | |
| 194 | const matchers = { |
| 195 | toBe(expected: unknown) { |
| 196 | assert( |
| 197 | Object.is(actual, expected), |
| 198 | `Expected ${formatValue(actual)} ${negate ? `not ` : ``}to be ${formatValue(expected)}`, |
| 199 | ) |
| 200 | }, |
| 201 | toEqual(expected: unknown) { |
| 202 | assert( |
| 203 | deepEqual(actual, expected), |
nothing calls this directly
no test coverage detected