test(cli): normalize profile fixture paths

This commit is contained in:
marius-kilocode
2026-07-10 11:12:07 +02:00
parent 6c961795f2
commit 40c8412682
@@ -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", () => {