mirror of https://github.com/openclaw/openclaw.git
test: fix manifest registry fixture typing
This commit is contained in:
parent
a4327ad544
commit
ec23552b58
|
|
@ -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");
|
||||
|
|
|
|||
Loading…
Reference in New Issue