From bc73513e1144a560ddfc76b17fd28fd56212a083 Mon Sep 17 00:00:00 2001 From: Peter Steinberger Date: Mon, 12 Jan 2026 02:05:34 +0000 Subject: [PATCH] test: fix windows nix config path assertion --- src/config/config.test.ts | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/config/config.test.ts b/src/config/config.test.ts index 94f0af9cf..ef23b1911 100644 --- a/src/config/config.test.ts +++ b/src/config/config.test.ts @@ -671,7 +671,9 @@ describe("Nix integration (U3, U5, U9)", () => { { CLAWDBOT_CONFIG_PATH: "/nix/store/abc/clawdbot.json" }, async () => { const { CONFIG_PATH_CLAWDBOT } = await import("./config.js"); - expect(CONFIG_PATH_CLAWDBOT).toBe("/nix/store/abc/clawdbot.json"); + expect(CONFIG_PATH_CLAWDBOT).toBe( + path.resolve("/nix/store/abc/clawdbot.json"), + ); }, ); });