mirror of
https://github.com/openclaw/openclaw.git
synced 2026-08-25 11:55:47 -06:00
12 lines
380 B
TypeScript
12 lines
380 B
TypeScript
// Installs shared runtime mocks used by get-reply test modules.
|
|
import { vi } from "vitest";
|
|
import "./get-reply.test-mocks.js";
|
|
|
|
vi.mock("../../link-understanding/apply.runtime.js", () => ({
|
|
applyLinkUnderstanding: vi.fn(async () => undefined),
|
|
}));
|
|
|
|
vi.mock("../../media-understanding/apply.runtime.js", () => ({
|
|
applyMediaUnderstanding: vi.fn(async () => undefined),
|
|
}));
|