fix: increase file-watcher test delay for CI stability

This commit is contained in:
Jeremy McSpadden 2026-03-16 14:00:47 -05:00
parent 084fb35c1e
commit ce6e684899

View file

@ -99,7 +99,7 @@ test("extensions directory change emits extensions-changed event", async () => {
join(dir, "extensions", "my-ext.json"),
JSON.stringify({ name: "test" }),
);
await delay(600);
await delay(1000);
const matched = bus.events.filter(
(e) => e.channel === "extensions-changed",