chore(cli): fix watcher change markers

This commit is contained in:
marius-kilocode
2026-07-08 21:20:12 +02:00
parent 07c136d0d1
commit 276c5471b5
+3 -1
View File
@@ -10,11 +10,13 @@ import { Config } from "@/config/config"
import { FileWatcher } from "../../src/file/watcher"
import { Git } from "../../src/git"
// kilocode_change start
// Native @parcel/watcher bindings aren't reliably available in CI (missing on Linux, flaky on Windows).
const describeWatcher =
FileWatcher.hasNativeBinding() && (!process.env.CI || process.env.KILO_TEST_PROFILE === "darwin") // kilocode_change
FileWatcher.hasNativeBinding() && (!process.env.CI || process.env.KILO_TEST_PROFILE === "darwin")
? describe
: describe.skip
// kilocode_change end
// ---------------------------------------------------------------------------
// Helpers