()
| 37 | run(); |
| 38 | |
| 39 | function run() { |
| 40 | const t = queue.pop(); |
| 41 | if (t) |
| 42 | test(t[0], t[1], t[2], run); |
| 43 | else |
| 44 | console.log('ok'); |
| 45 | } |
| 46 | |
| 47 | function test(decode, uncork, multi, next) { |
| 48 | console.log(`# decode=${decode} uncork=${uncork} multi=${multi}`); |
no test coverage detected