Use const for unmutated let

This commit is contained in:
Asher
2026-08-06 12:35:13 -08:00
parent 1a370bb606
commit f836314954

View File

@@ -38,7 +38,7 @@ describe("vscode", () => {
it("should require auth", async () => { it("should require auth", async () => {
codeServer = await integration.setup(["--auth=password"], "") codeServer = await integration.setup(["--auth=password"], "")
let resp = await codeServer.fetch("/mint-key", { method: "POST" }) const resp = await codeServer.fetch("/mint-key", { method: "POST" })
expect(resp.status).toBe(401) expect(resp.status).toBe(401)
}) })
}) })