fix(memory): default qmd searchMode to search + scope search/vsearch to collections

This commit is contained in:
vignesh07
2026-02-13 22:44:56 -08:00
committed by Vignesh
parent a50638eead
commit e38ed4f640
5 changed files with 21 additions and 32 deletions

View File

@@ -25,7 +25,7 @@ describe("resolveMemoryBackendConfig", () => {
expect(resolved.backend).toBe("qmd");
expect(resolved.qmd?.collections.length).toBeGreaterThanOrEqual(3);
expect(resolved.qmd?.command).toBe("qmd");
expect(resolved.qmd?.searchMode).toBe("query");
expect(resolved.qmd?.searchMode).toBe("search");
expect(resolved.qmd?.update.intervalMs).toBeGreaterThan(0);
expect(resolved.qmd?.update.waitForBootSync).toBe(false);
expect(resolved.qmd?.update.commandTimeoutMs).toBe(30_000);