test: fix manifest registry fixture typing

This commit is contained in:
Tak Hoffman 2026-03-24 14:15:16 -05:00
parent a4327ad544
commit ec23552b58
No known key found for this signature in database
1 changed files with 4 additions and 1 deletions

View File

@ -106,7 +106,10 @@ describe("resolvePluginWebSearchProviders", () => {
configUiHints: { unrelated: { label: "nope" } },
},
],
} as ManifestRegistryModule["loadPluginManifestRegistry"] extends (...args: any[]) => infer R
diagnostics: [],
} as ManifestRegistryModule["loadPluginManifestRegistry"] extends (
...args: unknown[]
) => infer R
? R
: never);
const loaderModule = await import("./loader.js");