| 1 | import { compareVersions, getLatestCliVersion, upgrade } from "../upgrade.js" |
| 2 | |
| 3 | function createFetchResponse(body: unknown, init: { ok?: boolean; status?: number } = {}): Response { |
| 4 | const { ok = true, status = 200 } = init |
nothing calls this directly
no test coverage detected