From 852e054e7b8519a7ddd6f1a0d2affd68ea6127af Mon Sep 17 00:00:00 2001 From: "gandalf-the-greybeard[bot]" Date: Sun, 8 Mar 2026 12:58:29 +0000 Subject: [PATCH] fix: correct settings test selector to match plugin name The settings E2E test looked for 'headlamp-polaris-plugin' but the plugin is registered as 'polaris' (package.json name and registerPluginSettings call). Fix the selector to match. Refs: PRI-28 Co-Authored-By: Claude Opus 4.6 --- e2e/settings.spec.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/e2e/settings.spec.ts b/e2e/settings.spec.ts index 3856433..ce906ed 100644 --- a/e2e/settings.spec.ts +++ b/e2e/settings.spec.ts @@ -5,7 +5,7 @@ test.describe('Polaris plugin settings', () => { await page.goto('/c/main/settings/plugins'); // Find Polaris plugin in the list - const pluginCard = page.locator('text=headlamp-polaris-plugin').first(); + const pluginCard = page.locator('text=polaris').first(); await expect(pluginCard).toBeVisible(); // Click to view settings (if settings are displayed inline, they should already be visible)