(w, wo)
| 72 | const fmtTime = (s) => s >= 60 ? `${Math.floor(s / 60)}m ${Math.round(s % 60)}s` : `${Math.round(s)}s`; |
| 73 | const fmtTok = (t) => t >= 1e6 ? `${(t / 1e6).toFixed(1)}M` : `${Math.round(t / 1000)}k`; |
| 74 | const pct = (w, wo) => wo > 0 ? Math.round((1 - w / wo) * 100) : 0; |
| 75 | |
| 76 | // Exclude MCP-cold-start-raced WITH runs by default — they measure a startup |
| 77 | // race, not steady-state value. `CG_INCLUDE_RACED=1` keeps them (to see the raw |
no outgoing calls
no test coverage detected