(expected: unknown)
| 199 | ) |
| 200 | }, |
| 201 | toEqual(expected: unknown) { |
| 202 | assert( |
| 203 | deepEqual(actual, expected), |
| 204 | `Expected ${formatValue(actual)} ${negate ? `not ` : ``}to equal ${formatValue(expected)}`, |
| 205 | ) |
| 206 | }, |
| 207 | toBeGreaterThan(expected: number) { |
| 208 | assert( |
| 209 | typeof actual === `number` && actual > expected, |
nothing calls this directly
no test coverage detected