Merge pull request #37069 from BerriAI/litellm_/frosty-goldwasser-93a2a1
Some checks failed
CodSpeed Benchmarks / benchmarks (push) Has been cancelled
Code Quality Checks / code-quality (push) Has been cancelled
UI Unit Tests / ui-unit-tests (push) Has been cancelled
CI Coverage / assert-ci-coverage (push) Has been cancelled
Unit Tests: Core Utilities / core-utils (push) Has been cancelled
Publish basedpyright base counts / publish (push) Has been cancelled
GitHub Actions Security Analysis / zizmor (push) Has been cancelled
Unit Tests: Documentation Validation / documentation (push) Has been cancelled
Unit Tests: Enterprise, Google GenAI & Routing / enterprise-routing (push) Has been cancelled
Unit Tests: Integrations (Callbacks & Logging) / integrations (push) Has been cancelled
Unit Tests: LLM Provider Transformations / Vertex AI (push) Has been cancelled
Unit Tests: LLM Provider Transformations / All Other Providers (push) Has been cancelled
Unit Tests: MCP, Secrets, Containers & Misc / misc (push) Has been cancelled
Unit Tests: Proxy Auth & Key Management / proxy-auth (push) Has been cancelled
Unit Tests: Proxy DB Operations / assert-shard-coverage (push) Has been cancelled
Unit Tests: Proxy API Endpoints / proxy-endpoints (push) Has been cancelled
Unit Tests: Proxy API Endpoints / proxy-server (push) Has been cancelled
Unit Tests: Proxy Infrastructure / proxy-infra (push) Has been cancelled
Unit Tests: Responses, Caching & Types / responses-caching-types (push) Has been cancelled
Unit Tests: Proxy DB Operations / auth-checks (push) Has been cancelled
Unit Tests: Proxy DB Operations / budgets (push) Has been cancelled
Unit Tests: Proxy DB Operations / custom-logging (push) Has been cancelled
Unit Tests: Proxy DB Operations / db-and-spend (push) Has been cancelled
Unit Tests: Proxy DB Operations / endpoints-and-responses (push) Has been cancelled
Unit Tests: Proxy DB Operations / guardrails-hooks (push) Has been cancelled
Unit Tests: Proxy DB Operations / jwt-and-keys (push) Has been cancelled
Unit Tests: Proxy DB Operations / key-generation (push) Has been cancelled
Unit Tests: Proxy DB Operations / logging-misc (push) Has been cancelled
Unit Tests: Proxy DB Operations / proxy-runtime (push) Has been cancelled
Unit Tests: Proxy DB Operations / proxy-server-core (push) Has been cancelled
Unit Tests: Proxy DB Operations / proxy-utils (push) Has been cancelled

test(e2e/ui): assert the log drawer chevrons by their lucide classes
This commit is contained in:
yuneng-jiang 2026-08-15 17:59:12 -07:00 committed by GitHub
commit 973329e986
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -129,17 +129,17 @@ test.describe("Logs page", () => {
// box, so the wrapper reads as hidden while the clipped text node inside it does not. // box, so the wrapper reads as hidden while the clipped text node inside it does not.
const header = sectionHeader(drawer, "Input"); const header = sectionHeader(drawer, "Input");
const body = header.locator("xpath=following-sibling::div[1]"); const body = header.locator("xpath=following-sibling::div[1]");
await expect(header.locator(".anticon-up")).toBeVisible(); await expect(header.locator(".lucide-chevron-up")).toBeVisible();
await expect(body).toBeVisible(); await expect(body).toBeVisible();
await header.click(); await header.click();
await expect(header.locator(".anticon-down")).toBeVisible({ await expect(header.locator(".lucide-chevron-down")).toBeVisible({
timeout: 10_000, timeout: 10_000,
}); });
await expect(body).toBeHidden({ timeout: 10_000 }); await expect(body).toBeHidden({ timeout: 10_000 });
await header.click(); await header.click();
await expect(header.locator(".anticon-up")).toBeVisible({ await expect(header.locator(".lucide-chevron-up")).toBeVisible({
timeout: 10_000, timeout: 10_000,
}); });
await expect(body).toBeVisible({ timeout: 10_000 }); await expect(body).toBeVisible({ timeout: 10_000 });