(a, b)
| 31 | if (a !== b) throw new Error(`'${a}' does not equal to '${b}'`); |
| 32 | }, |
| 33 | arrayEqual(a, b) |
| 34 | { |
| 35 | if (JSON.stringify(a) !== JSON.stringify(b)) throw new Error(`'${a}' does not equal to '${b}'`); |
| 36 | }, |
| 37 | throws(fn, error) |
| 38 | { |
| 39 | try |
nothing calls this directly
no outgoing calls
no test coverage detected