mirror of
https://github.com/farion1231/cc-switch.git
synced 2026-08-01 04:02:02 +08:00
c49cf96a16
* fix(grokbuild): complete proxy integration * fix(deeplink): preview GrokBuild configs safely * test(app): stabilize provider integration suite * fix(grokbuild): address review feedback * fix(grokbuild): resolve remaining review findings * fix(grokbuild): use native sessions and harden previews
14 lines
389 B
TypeScript
14 lines
389 B
TypeScript
import { describe, expect, it } from "vitest";
|
|
import { FAILOVER_APPS } from "@/components/settings/ProxyTabContent";
|
|
|
|
describe("ProxyTabContent failover apps", () => {
|
|
it("exposes Grok Build alongside the existing failover applications", () => {
|
|
expect(FAILOVER_APPS.map(({ id }) => id)).toEqual([
|
|
"claude",
|
|
"codex",
|
|
"gemini",
|
|
"grokbuild",
|
|
]);
|
|
});
|
|
});
|