fix: remove any from doctor-security dmScope regression test (#13129) (thanks @VintLin)

This commit is contained in:
Peter Steinberger
2026-02-13 16:43:13 +01:00
parent f612e35907
commit 4337fa2096

View File

@@ -2,7 +2,7 @@ import { afterEach, beforeEach, describe, expect, it, vi } from "vitest";
import type { OpenClawConfig } from "../config/config.js";
const note = vi.hoisted(() => vi.fn());
const pluginRegistry = vi.hoisted(() => ({ list: [] as any[] }));
const pluginRegistry = vi.hoisted(() => ({ list: [] as unknown[] }));
vi.mock("../terminal/note.js", () => ({
note,