Compare commits

...
Author SHA1 Message Date
Arafatkatze c39aece1e8 fix(test): update Cline logo selector in auth e2e test
Change logo locator from ".size-20 > path" to ".size-20" for more
reliable element selection. Also fix typo in comment ("clline" -> "cline").
2025-12-10 02:56:44 -05:00
+2 -2
View File
@@ -51,8 +51,8 @@ e2e("Views - can set up API keys and navigate to Settings from Chat", async ({ s
await expect(dialog).not.toBeVisible()
// Verify you are now in the chat page after setup was completed and the dialog was closed.
// cline logo has the name "clline-logo"
const clineLogo = sidebar.locator(".size-20 > path")
// cline logo has the class "size-20"
const clineLogo = sidebar.locator(".size-20")
await expect(clineLogo).toBeVisible()
const chatInputBox = sidebar.getByTestId("chat-input")
await expect(chatInputBox).toBeVisible()