Add mock implementation for workspace list function

This commit is contained in:
Harshit Singh Bhandari 2026-03-26 19:30:41 +05:30 committed by GitHub
parent 532fdd22a4
commit 5449acd04e
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 0 deletions

View File

@ -90,6 +90,7 @@ export function createMockPlugins(): MockPlugins {
name: "mock-ws",
create: vi.fn(),
destroy: vi.fn(),
list: vi.fn().mockResolvedValue([]),
};
return { runtime, agent, workspace };