From cb47ebd161f735f2bcd64c2506205ffae530e4c6 Mon Sep 17 00:00:00 2001 From: jesse-merhi <79823012+jesse-merhi@users.noreply.github.com> Date: Thu, 13 Aug 2026 04:11:06 +1000 Subject: [PATCH] test(ui): align plugin install harness identity --- ui/src/pages/plugins/plugins-page.test-support.ts | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) 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;