From 6b59c87570b761dc3b1fb670deb9f8088fed6455 Mon Sep 17 00:00:00 2001 From: clawdbot Date: Thu, 26 Feb 2026 22:24:45 +0100 Subject: [PATCH] fix: add missing closing brace in proxy env test --- src/daemon/service-env.test.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/daemon/service-env.test.ts b/src/daemon/service-env.test.ts index 6dc20971ff0..ef8a64904a8 100644 --- a/src/daemon/service-env.test.ts +++ b/src/daemon/service-env.test.ts @@ -328,6 +328,7 @@ describe("buildServiceEnvironment", () => { expect(env.NO_PROXY).toBe("localhost,127.0.0.1"); expect(env.http_proxy).toBe("http://proxy.local:7890"); expect(env.all_proxy).toBe("socks5://proxy.local:1080"); + }); it("defaults NODE_EXTRA_CA_CERTS to system cert bundle on macOS", () => { const env = buildServiceEnvironment({ env: { HOME: "/home/user" },