Merge 0b8e9866eacb5898cbbc68e98c0085f384fdf262 into 598f1826d8b2bc969aace2c6459824737667218c
This commit is contained in:
commit
acf56f5b21
@ -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),
|
||||
}));
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user