Merge 0b8e9866eacb5898cbbc68e98c0085f384fdf262 into 598f1826d8b2bc969aace2c6459824737667218c

This commit is contained in:
Josh Lehman 2026-03-21 03:15:10 +00:00 committed by GitHub
commit acf56f5b21
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -252,6 +252,10 @@ export async function loadCompactHooksHarness(): Promise<{
resolveContextEngine: resolveContextEngineMock,
}));
vi.doMock("../../plugins/provider-runtime.js", () => ({
prepareProviderRuntimeAuth: vi.fn(async () => undefined),
}));
vi.doMock("../../process/command-queue.js", () => ({
enqueueCommandInLane: vi.fn((_lane: unknown, task: () => unknown) => task()),
}));
@ -375,6 +379,14 @@ export async function loadCompactHooksHarness(): Promise<{
})),
}));
vi.doMock("../pi-bundle-mcp-tools.js", () => ({
createBundleMcpToolRuntime: vi.fn(async () => undefined),
}));
vi.doMock("../pi-bundle-lsp-runtime.js", () => ({
createBundleLspToolRuntime: vi.fn(async () => undefined),
}));
vi.doMock("./sandbox-info.js", () => ({
buildEmbeddedSandboxInfo: vi.fn(() => undefined),
}));