diff --git a/packages/ragmir-core/src/context-resources.test.ts b/packages/ragmir-core/src/context-resources.test.ts index 1a716ad..661859b 100644 --- a/packages/ragmir-core/src/context-resources.test.ts +++ b/packages/ragmir-core/src/context-resources.test.ts @@ -104,5 +104,5 @@ describe("context resources", () => { expect(secondPage.indexedFiles).toHaveLength(5) expect(secondPage.indexedFiles[0]?.source).toBe(".ragmir/raw/source-50.md") expect(secondPage.page).toEqual({ offset: 50, limit: 10, nextOffset: null }) - }) + }, 15_000) }) diff --git a/packages/ragmir-core/src/index-write-lock.test.ts b/packages/ragmir-core/src/index-write-lock.test.ts index a5e28aa..f72ccec 100644 --- a/packages/ragmir-core/src/index-write-lock.test.ts +++ b/packages/ragmir-core/src/index-write-lock.test.ts @@ -216,7 +216,7 @@ describe("withIndexWriteLock", () => { staleInIndex: [], totalChunks: rows.length, }) - }) + }, 30_000) }) interface ChildEvent { diff --git a/packages/ragmir-core/src/query.test.ts b/packages/ragmir-core/src/query.test.ts index 96c41a3..9fc4da9 100644 --- a/packages/ragmir-core/src/query.test.ts +++ b/packages/ragmir-core/src/query.test.ts @@ -515,7 +515,7 @@ describe("search", () => { lexicalExactPathMatch: true, }) expect(vectorCandidateLimit(1)).toBeLessThan(90) - }, 10_000) + }, 20_000) it("should explain complete lexical fallback activation and coverage", async () => { const root = await mkdtemp(path.join(os.tmpdir(), "ragmir-query-fallback-explain-"))