(...args)
| 346 | // This is a hack. It allows the innerOk function to collect the |
| 347 | // stacktrace from the correct starting point. |
| 348 | function ok(...args) { |
| 349 | if (plan !== null) { |
| 350 | plan.count(); |
| 351 | } |
| 352 | innerOk(ok, ...args); |
| 353 | } |
| 354 | |
| 355 | assert.ok = ok; |
| 356 | } |