mirror of
https://github.com/openclaw/openclaw.git
synced 2026-03-12 23:40:45 +00: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();
|
|
});
|