(rc)
| 58 | // the same file succeeds. Mirrors the (path, line range) identity the bot uses |
| 59 | // for incremental dedup and the idempotency check. |
| 60 | function commentKey(rc) { |
| 61 | if (!rc) return "?"; |
| 62 | return `${rc.path}|${rc.start_line != null ? rc.start_line : "-"}|${rc.line != null ? rc.line : "-"}`; |
| 63 | } |
| 64 | |
| 65 | // Temporarily override env vars for a single (sync or async) test body, always |
| 66 | // restoring originals afterwards. Used for retry/quota tests that need a |
no outgoing calls
no test coverage detected