mirror of
https://github.com/openclaw/openclaw.git
synced 2026-05-13 04:48:15 +00:00
11 lines
374 B
TypeScript
11 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();
|
|
});
|