(q)
| 100 | const lat = results.map((r) => r.ms).sort((a, b) => a - b); |
| 101 | const timeouts = results.filter((r) => r.timedOut).length; |
| 102 | const p = (q) => lat[Math.min(lat.length - 1, Math.floor(q * lat.length))]; |
| 103 | |
| 104 | console.log('='.repeat(64)); |
| 105 | console.log(`repo=${repo}`); |
no outgoing calls
no test coverage detected