Agent Skills: Status Bar Integration for Skill Counts (#15741)

This commit is contained in:
N. Taylor Mullen
2026-01-02 15:01:31 -08:00
committed by GitHub
parent c0ccb22460
commit e78c3fe4f0
4 changed files with 36 additions and 17 deletions
@@ -144,10 +144,16 @@ const createMockConfig = (overrides = {}) => ({
getDebugMode: vi.fn(() => false),
getAccessibility: vi.fn(() => ({})),
getMcpServers: vi.fn(() => ({})),
getMcpClientManager: vi.fn().mockImplementation(() => ({
getBlockedMcpServers: vi.fn(),
getMcpServers: vi.fn(),
})),
getToolRegistry: () => ({
getTool: vi.fn(),
}),
getSkillManager: () => ({
getSkills: () => [],
}),
getMcpClientManager: () => ({
getMcpServers: () => ({}),
getBlockedMcpServers: () => [],
}),
...overrides,
});