test(config): cover athena-junior in overridable agent names

This commit is contained in:
ismeth
2026-03-04 01:36:51 +01:00
committed by YeonGyu-Kim
parent 11f6712dde
commit fb1be5923f
+11
View File
@@ -56,4 +56,15 @@ describe("agent name schemas", () => {
//#then
expect(result.success).toBe(true)
})
test("OverridableAgentNameSchema accepts athena-junior", () => {
//#given
const candidate = "athena-junior"
//#when
const result = OverridableAgentNameSchema.safeParse(candidate)
//#then
expect(result.success).toBe(true)
})
})