mirror of
https://github.com/farion1231/cc-switch.git
synced 2026-08-04 11:43:57 +08:00
15 lines
393 B
TypeScript
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",
|
|
]);
|
|
});
|
|
});
|