From 40c8412682fe9dc02cd185a32ec8d41600882967 Mon Sep 17 00:00:00 2001 From: marius-kilocode Date: Fri, 10 Jul 2026 11:12:07 +0200 Subject: [PATCH] test(cli): normalize profile fixture paths --- packages/opencode/test/kilocode/test-profile.test.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/opencode/test/kilocode/test-profile.test.ts b/packages/opencode/test/kilocode/test-profile.test.ts index 1bd6fc2601a..2ad63622ee4 100644 --- a/packages/opencode/test/kilocode/test-profile.test.ts +++ b/packages/opencode/test/kilocode/test-profile.test.ts @@ -4,7 +4,7 @@ import { TestProfile } from "../../script/kilocode/test-profile" const root = path.resolve(import.meta.dir, "..") const glob = new Bun.Glob("**/*.test.{ts,tsx}") -const all = (await Array.fromAsync(glob.scan({ cwd: root }))).sort() +const all = (await Array.fromAsync(glob.scan({ cwd: root }))).map((file) => file.replaceAll("\\", "/")).sort() describe("test profiles", () => { test("darwin profile contains valid test files", () => {