import type { WebClient } from "@slack/web-api"; import { vi } from "vitest"; export type SlackEditTestClient = WebClient & { chat: { update: ReturnType; }; }; export type SlackSendTestClient = WebClient & { conversations: { open: ReturnType; }; chat: { postMessage: ReturnType; }; }; const slackBlockTestState = vi.hoisted(() => ({ account: { accountId: "default", botToken: "xoxb-test", botTokenSource: "config", config: {}, }, config: {}, })); vi.mock("openclaw/plugin-sdk/config-runtime", async (importOriginal) => { const actual = await importOriginal(); return { ...actual, loadConfig: () => slackBlockTestState.config, }; }); vi.mock("./accounts.js", async (importOriginal) => { const actual = await importOriginal(); return { ...actual, resolveSlackAccount: () => slackBlockTestState.account, }; }); // Kept for compatibility with existing tests; mocks install at module evaluation. export function installSlackBlockTestMocks() { return; } export function createSlackEditTestClient(): SlackEditTestClient { return { chat: { update: vi.fn(async () => ({ ok: true })), }, } as unknown as SlackEditTestClient; } export function createSlackSendTestClient(): SlackSendTestClient { return { conversations: { open: vi.fn(async () => ({ channel: { id: "D123" } })), }, chat: { postMessage: vi.fn(async () => ({ ts: "171234.567" })), }, } as unknown as SlackSendTestClient; }