We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4ffcec9 commit 7e1294bCopy full SHA for 7e1294b
tests/e2e/scenarios/settings.spec.ts
@@ -97,7 +97,9 @@ test.describe("Settings Modal", () => {
97
98
// Verify all providers are listed with correct display names
99
await expect(page.getByRole("button", { name: /Anthropic/i })).toBeVisible();
100
- await expect(page.getByRole("button", { name: /OpenAI/i })).toBeVisible();
+ await expect(
101
+ page.getByRole("button", { name: /OpenAI/i }).filter({ has: page.getByText("OpenAI icon") })
102
+ ).toBeVisible();
103
await expect(page.getByRole("button", { name: /Google/i })).toBeVisible();
104
await expect(page.getByRole("button", { name: /xAI/i })).toBeVisible();
105
await expect(page.getByRole("button", { name: /Ollama/i })).toBeVisible();
0 commit comments