mirror of https://github.com/openclaw/openclaw.git
13 lines
384 B
TypeScript
13 lines
384 B
TypeScript
import { vi } from "vitest";
|
|
import { registerGetReplyCommonMocks } from "./get-reply.test-mocks.js";
|
|
|
|
registerGetReplyCommonMocks();
|
|
|
|
vi.mock("../../link-understanding/apply.runtime.js", () => ({
|
|
applyLinkUnderstanding: vi.fn(async () => undefined),
|
|
}));
|
|
|
|
vi.mock("../../media-understanding/apply.runtime.js", () => ({
|
|
applyMediaUnderstanding: vi.fn(async () => undefined),
|
|
}));
|