fix(tui): order connected provider models by release date (#29798)

This commit is contained in:
Aiden Cline
2026-05-28 16:37:32 -05:00
committed by GitHub
parent 1f707f1b52
commit 7b56a1cea3
2 changed files with 44 additions and 4 deletions

View File

@@ -0,0 +1,30 @@
import { describe, expect, test } from "bun:test"
import { sortModelOptions } from "../../../../src/cli/cmd/tui/component/dialog-model"
describe("sortModelOptions", () => {
test("orders provider-scoped model choices by newest release first", () => {
const sorted = sortModelOptions(
[
{ title: "GPT 5.2", releaseDate: "2025-12-11" },
{ title: "GPT 5.4", releaseDate: "2026-03-05" },
{ title: "GPT 5.1", releaseDate: "2025-11-13" },
],
true,
)
expect(sorted.map((model) => model.title)).toEqual(["GPT 5.4", "GPT 5.2", "GPT 5.1"])
})
test("preserves free-first alphabetical ordering for the regular picker", () => {
const sorted = sortModelOptions(
[
{ title: "Beta", releaseDate: "2026-01-01" },
{ title: "Alpha", releaseDate: "2025-01-01", footer: "Free" },
{ title: "Gamma", releaseDate: "2024-01-01", footer: "Free" },
],
false,
)
expect(sorted.map((model) => model.title)).toEqual(["Alpha", "Gamma", "Beta"])
})
})