(bool, message)
| 314 | |
| 315 | // Shims for compatibility with the old qunit tests. |
| 316 | function ok(bool, message) { |
| 317 | expect(bool).toBeTruthy(message); |
| 318 | } |
| 319 | function equal(a, b, message) { |
| 320 | expect(a).toEqual(b, message); |
| 321 | } |
no outgoing calls
no test coverage detected