Merge branch 'cw/improve-inbox-ui-on-hq' into cw-merge-1772839945283

This commit is contained in:
Lukas May
2026-03-07 00:32:25 +01:00
15 changed files with 512 additions and 20 deletions

View File

@@ -139,6 +139,7 @@ describe('MultiProviderAgentManager', () => {
findByStatus: vi.fn().mockResolvedValue([mockAgent]),
update: vi.fn().mockResolvedValue(mockAgent),
delete: vi.fn().mockResolvedValue(undefined),
findWaitingWithContext: vi.fn().mockResolvedValue([]),
};
mockProjectRepository = {

View File

@@ -46,7 +46,8 @@ describe('OutputHandler completion mutex', () => {
async findByTaskId() { throw new Error('Not implemented'); },
async findByName() { throw new Error('Not implemented'); },
async findBySessionId() { throw new Error('Not implemented'); },
async delete() { throw new Error('Not implemented'); }
async delete() { throw new Error('Not implemented'); },
async findWaitingWithContext() { throw new Error('Not implemented'); }
};
beforeEach(() => {