diff --git a/ui/src/pages/plugins/plugins-page.test-support.ts b/ui/src/pages/plugins/plugins-page.test-support.ts index c8c8138fd93f..7f90c482b0e8 100644 --- a/ui/src/pages/plugins/plugins-page.test-support.ts +++ b/ui/src/pages/plugins/plugins-page.test-support.ts @@ -41,7 +41,11 @@ type TestPluginsPage = HTMLElement & { activeTab: "installed" | "discover"; searchResults: PluginSearchResult[] | null; applyMutationResult: (result: PluginMutationResult) => void; - install: (rowKey: string, request: PluginInstallRequest) => Promise; + install: ( + rowKey: string, + request: PluginInstallRequest, + installIdentity: string, + ) => Promise; refreshCatalog: () => Promise; updateEnabled: (pluginId: string, enabled: boolean, key?: string) => Promise; uninstall: (pluginId: string, rowKey: string) => Promise;