chore: remove asset entity (#17703)

This commit is contained in:
Daniel Dietzler
2025-04-18 23:39:56 +02:00
committed by GitHub
parent 52ae06c119
commit dd1fcd5be5
12 changed files with 281 additions and 299 deletions
@@ -15,6 +15,14 @@ describe(MemoryService.name, () => {
expect(sut).toBeDefined();
});
describe('onMemoryCleanup', () => {
it('should clean up memories', async () => {
mocks.memory.cleanup.mockResolvedValue([]);
await sut.onMemoriesCleanup();
expect(mocks.memory.cleanup).toHaveBeenCalled();
});
});
describe('search', () => {
it('should search memories', async () => {
const [userId] = newUuids();