(q)
| 109 | const lat = results.map((r) => r.ms).sort((a, b) => a - b); |
| 110 | const timeouts = results.filter((r) => r.timedOut).length; |
| 111 | const p = (q) => lat[Math.min(lat.length - 1, Math.floor(q * lat.length))]; |
| 112 | |
| 113 | console.log('='.repeat(64)); |
| 114 | console.log(`HARNESS B (real daemon + ${N} proxies) repo=${repo}`); |
no outgoing calls
no test coverage detected