(a, b, message)
| 323 | expect(a).toBe(b, message); |
| 324 | } |
| 325 | function notEqual(a, b, message) { |
| 326 | expect(a).not.toEqual(b, message); |
| 327 | } |
| 328 | |
| 329 | // Because node doesn't have Parse._.contains |
| 330 | function arrayContains(arr, item) { |
no outgoing calls
no test coverage detected