(cb)
| 133 | } |
| 134 | |
| 135 | function makeParallelRequests (cb) { |
| 136 | return Promise.all(Array.from(Array(parallelRequests)).map(() => new Promise(cb))) |
| 137 | } |
| 138 | |
| 139 | function printResults (results) { |
| 140 | // Sort results by least performant first, then compare relative performances and also printing padding |
no test coverage detected