Files
CC-Switch/tests/components/ProxyTabContent.apps.test.ts
T
2026-08-02 22:52:35 +00:00

15 lines
393 B
TypeScript

import { describe, expect, it } from "vitest";
import { FAILOVER_APPS } from "@/components/settings/ProxyTabContent";
describe("ProxyTabContent failover apps", () => {
it("exposes Pi alongside the existing failover applications", () => {
expect(FAILOVER_APPS.map(({ id }) => id)).toEqual([
"claude",
"codex",
"gemini",
"grokbuild",
"pi",
]);
});
});