fix: show memory index counts in progress

This commit is contained in:
Peter Steinberger
2026-01-17 21:09:22 +00:00
parent e932772230
commit 40345642fa
2 changed files with 20 additions and 1 deletions

View File

@@ -145,6 +145,7 @@ describe("memory embedding batches", () => {
});
expect(updates.length).toBeGreaterThan(0);
expect(updates.some((update) => update.label?.includes("/"))).toBe(true);
const last = updates[updates.length - 1];
expect(last?.total).toBeGreaterThan(0);
expect(last?.completed).toBe(last?.total);