mirror of
https://github.com/openclaw/openclaw.git
synced 2026-03-28 03:57:28 +01:00
12 lines
374 B
TypeScript
12 lines
374 B
TypeScript
import { vi } from "vitest";
|
|
|
|
vi.mock("./accounts.js", async () => {
|
|
const { createBlueBubblesAccountsMockModule } = await import("./test-harness.js");
|
|
return createBlueBubblesAccountsMockModule();
|
|
});
|
|
|
|
vi.mock("./probe.js", async () => {
|
|
const { createBlueBubblesProbeMockModule } = await import("./test-harness.js");
|
|
return createBlueBubblesProbeMockModule();
|
|
});
|