mirror of
https://github.com/BerriAI/litellm.git
synced 2026-09-13 23:11:40 +00:00
Relocates ui/litellm-dashboard/e2e_tests to tests/e2e/ui so all end to end suites live under tests/e2e. The suite stays in TypeScript and becomes a self-contained npm package with its own package.json, lockfile and tsconfig instead of leaning on the dashboard's toolchain; the dashboard drops its @playwright/test dependency, e2e scripts and knip/vitest/tsconfig carve-outs. CI paths follow the move: both CircleCI jobs (main e2e and the SERVER_ROOT_PATH migration smoke) and the test_server_root_path workflow now install and run Playwright from tests/e2e/ui, with the node cache keyed on both lockfiles. classify_changes.sh treats tests/e2e/ui as client so spec edits keep skipping backend jobs. The suite's mock LLM fixture is excluded from the e2e basedpyright zero-error gate in pyrightconfig.json since it belongs to the TS suite, not the typed Python harness.
32 lines
854 B
JSON
32 lines
854 B
JSON
{
|
|
"$schema": "https://unpkg.com/knip@5/schema.json",
|
|
"entry": ["scripts/**/*.{ts,mjs}", "src/components/ui/**/*.{ts,tsx}"],
|
|
"project": ["src/**/*.{ts,tsx}", "tests/**/*.{ts,tsx}", "scripts/**/*.{ts,mjs}"],
|
|
"ignore": ["src/lib/http/schema.d.ts"],
|
|
"ignoreDependencies": [
|
|
"openapi-typescript",
|
|
"@headlessui/tailwindcss",
|
|
"@tailwindcss/forms",
|
|
"tailwindcss",
|
|
"tw-animate-css"
|
|
],
|
|
"vitest": {
|
|
"config": ["vitest.config.ts"]
|
|
},
|
|
"rules": {
|
|
"files": "error",
|
|
"dependencies": "error",
|
|
"devDependencies": "error",
|
|
"optionalPeerDependencies": "error",
|
|
"unlisted": "error",
|
|
"binaries": "error",
|
|
"unresolved": "error",
|
|
"exports": "warn",
|
|
"nsExports": "warn",
|
|
"types": "warn",
|
|
"nsTypes": "warn",
|
|
"enumMembers": "warn",
|
|
"classMembers": "warn",
|
|
"duplicates": "warn"
|
|
}
|
|
}
|