mirror of
https://github.com/openclaw/openclaw.git
synced 2026-05-06 00:10:21 +00:00
* Browser: replace extension path with Chrome MCP * Browser: clarify relay stub and doctor checks * Docs: mark browser MCP migration as breaking * Browser: reject unsupported profile drivers * Browser: accept clawd alias on profile create * Doctor: narrow legacy browser driver migration
64 lines
1.9 KiB
TypeScript
64 lines
1.9 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-browser.js", () => ({
|
|
noteChromeMcpBrowserReadiness: 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),
|
|
}));
|