Skip to content

Commit

Permalink
memory test
Browse files Browse the repository at this point in the history
  • Loading branch information
lalalune committed Mar 5, 2024
1 parent 4cc77d8 commit 6eca7d0
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/lib/__tests__/memory.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -256,10 +256,10 @@ describe("Memory - Basic tests", () => {
});

// Verify creation by counting memories
const initialCount = await memoryManager.countMemoriesByUserIds([
user?.id as UUID,
zeroUuid,
]);
const initialCount = await memoryManager.countMemoriesByUserIds(
[user?.id as UUID, zeroUuid],
false,
);
expect(initialCount).toBeGreaterThan(0);

// Search memories by embedding
Expand Down

0 comments on commit 6eca7d0

Please sign in to comment.