fix(ci): annotate feishu hoisted mock type

This commit is contained in:
Peter Steinberger
2026-03-02 09:59:16 +00:00
parent c1a46301b6
commit 033c731f19

View File

@@ -1,6 +1,6 @@
import { vi } from "vitest";
export const probeFeishuMock = vi.hoisted(() => vi.fn());
export const probeFeishuMock: ReturnType<typeof vi.fn> = vi.hoisted(() => vi.fn());
vi.mock("./probe.js", () => ({
probeFeishu: probeFeishuMock,