(n: number)
| 49 | |
| 50 | const msgSuffix = msg ? `: ${msg}` : "."; |
| 51 | const f = (n: number) => Number.isInteger(n) ? n : n.toExponential(); |
| 52 | throw new AssertionError( |
| 53 | `Expected actual: "${f(actual)}" to be close to "${f(expected)}": \ |
| 54 | delta "${f(delta)}" is greater than "${f(tolerance)}"${msgSuffix}`, |
no outgoing calls
no test coverage detected