From ffd37b7ed8e0002ffd266c6cfcf0500bf62c4730 Mon Sep 17 00:00:00 2001 From: Ishaan Jaffer Date: Wed, 6 May 2026 15:09:02 -0700 Subject: [PATCH] test(e2e/agents): add e2e:agents npm script Wraps the agents-suite Playwright config so it can run alongside the existing e2e suite without colliding on globalSetup. --- ui/litellm-dashboard/package.json | 1 + 1 file changed, 1 insertion(+) diff --git a/ui/litellm-dashboard/package.json b/ui/litellm-dashboard/package.json index 32c00ac62a8..e1fce52e12f 100644 --- a/ui/litellm-dashboard/package.json +++ b/ui/litellm-dashboard/package.json @@ -16,6 +16,7 @@ "format:check": "prettier --check .", "e2e": "playwright test --config e2e_tests/playwright.config.ts", "e2e:ui": "playwright test --ui --config e2e_tests/playwright.config.ts", + "e2e:agents": "playwright test --config e2e_tests/playwright.agents.config.ts", "knip": "knip", "knip:fix": "knip --fix" },