We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7832513 commit 2434808Copy full SHA for 2434808
1 file changed
src/agents/auth-profiles.store.save.test.ts
@@ -14,7 +14,9 @@ import {
14
} from "./auth-profiles/store.js";
15
import type { AuthProfileStore } from "./auth-profiles/types.js";
16
17
-const listRuntimeExternalAuthProfilesMock = vi.hoisted(() => vi.fn(() => []));
+const listRuntimeExternalAuthProfilesMock = vi.hoisted(() =>
18
+ vi.fn<(_params: unknown) => unknown[]>(() => []),
19
+);
20
21
vi.mock("./auth-profiles/external-auth.js", () => ({
22
listRuntimeExternalAuthProfiles: listRuntimeExternalAuthProfilesMock,
0 commit comments