mirror of
https://github.com/openclaw/openclaw.git
synced 2026-03-12 07:20:45 +00:00
Merged via squash.
Prepared head SHA: 5d6d4ddfa6
Co-authored-by: gumadeiras <5599352+gumadeiras@users.noreply.github.com>
Co-authored-by: gumadeiras <5599352+gumadeiras@users.noreply.github.com>
Reviewed-by: @gumadeiras
60 lines
1.8 KiB
TypeScript
60 lines
1.8 KiB
TypeScript
import { vi } from "vitest";
|
|
|
|
vi.mock("./doctor-completion.js", () => ({
|
|
doctorShellCompletion: vi.fn().mockResolvedValue(undefined),
|
|
}));
|
|
|
|
vi.mock("./doctor-bootstrap-size.js", () => ({
|
|
noteBootstrapFileSize: vi.fn().mockResolvedValue(undefined),
|
|
}));
|
|
|
|
vi.mock("./doctor-gateway-daemon-flow.js", () => ({
|
|
maybeRepairGatewayDaemon: vi.fn().mockResolvedValue(undefined),
|
|
}));
|
|
|
|
vi.mock("./doctor-gateway-health.js", () => ({
|
|
checkGatewayHealth: vi.fn().mockResolvedValue({ healthOk: false }),
|
|
probeGatewayMemoryStatus: vi.fn().mockResolvedValue({ checked: false, ready: false }),
|
|
}));
|
|
|
|
vi.mock("./doctor-memory-search.js", () => ({
|
|
noteMemorySearchHealth: vi.fn().mockResolvedValue(undefined),
|
|
}));
|
|
|
|
vi.mock("./doctor-platform-notes.js", () => ({
|
|
noteDeprecatedLegacyEnvVars: vi.fn(),
|
|
noteStartupOptimizationHints: vi.fn(),
|
|
noteMacLaunchAgentOverrides: vi.fn().mockResolvedValue(undefined),
|
|
noteMacLaunchctlGatewayEnvOverrides: vi.fn().mockResolvedValue(undefined),
|
|
}));
|
|
|
|
vi.mock("./doctor-sandbox.js", () => ({
|
|
maybeRepairSandboxImages: vi.fn(async (cfg: unknown) => cfg),
|
|
noteSandboxScopeWarnings: vi.fn(),
|
|
}));
|
|
|
|
vi.mock("./doctor-security.js", () => ({
|
|
noteSecurityWarnings: vi.fn().mockResolvedValue(undefined),
|
|
}));
|
|
|
|
vi.mock("./doctor-session-locks.js", () => ({
|
|
noteSessionLockHealth: vi.fn().mockResolvedValue(undefined),
|
|
}));
|
|
|
|
vi.mock("./doctor-state-integrity.js", () => ({
|
|
noteStateIntegrity: vi.fn().mockResolvedValue(undefined),
|
|
noteWorkspaceBackupTip: vi.fn(),
|
|
}));
|
|
|
|
vi.mock("./doctor-ui.js", () => ({
|
|
maybeRepairUiProtocolFreshness: vi.fn().mockResolvedValue(undefined),
|
|
}));
|
|
|
|
vi.mock("./doctor-workspace-status.js", () => ({
|
|
noteWorkspaceStatus: vi.fn(),
|
|
}));
|
|
|
|
vi.mock("./oauth-tls-preflight.js", () => ({
|
|
noteOpenAIOAuthTlsPrerequisites: vi.fn().mockResolvedValue(undefined),
|
|
}));
|