fix(agent): improve model selector legibility

This commit is contained in:
ginnoir
2026-07-08 18:59:41 -05:00
parent 716bca0fcb
commit bb679d02be
2 changed files with 4 additions and 1 deletions
+3
View File
@@ -29,6 +29,9 @@ test("assistant chat smoke after opt-in", async ({ page }) => {
const modelSelector = page.getByRole("combobox", { name: "Assistant model" });
await expect(modelSelector).toBeVisible();
await expect.poll(() => modelSelector.evaluate((node) => node.tagName)).toBe("SELECT");
await expect
.poll(() => modelSelector.evaluate((node) => node.getBoundingClientRect().height))
.toBeGreaterThanOrEqual(36);
await page.getByLabel("Message for Assistant").fill("hello assistant");
await page.getByRole("button", { name: "Send" }).click();