docs(test): refresh stale model refs

This commit is contained in:
Peter Steinberger
2026-04-04 08:05:33 +01:00
parent f38a3ae996
commit 14cfcdba1a
366 changed files with 883 additions and 890 deletions

View File

@@ -473,13 +473,13 @@ describe("failover-error", () => {
it("coerces failover-worthy errors into FailoverError with metadata", () => {
const err = coerceToFailoverError("credit balance too low", {
provider: "anthropic",
model: "claude-opus-4-5",
model: "claude-opus-4-6",
});
expect(err?.name).toBe("FailoverError");
expect(err?.reason).toBe("billing");
expect(err?.status).toBe(402);
expect(err?.provider).toBe("anthropic");
expect(err?.model).toBe("claude-opus-4-5");
expect(err?.model).toBe("claude-opus-4-6");
});
it("maps overloaded to a 503 fallback status", () => {