()
| 241 | ) |
| 242 | }, |
| 243 | toBeNull() { |
| 244 | assert( |
| 245 | actual === null, |
| 246 | `Expected ${formatValue(actual)} ${negate ? `not ` : ``}to be null`, |
| 247 | ) |
| 248 | }, |
| 249 | toContain(expected: unknown) { |
| 250 | const contains = |
| 251 | typeof actual === `string` |
nothing calls this directly
no test coverage detected