fix: isPlanFamily regression tests, code-review -> review-work in test data (#3312, #3285, #3290)

This commit is contained in:
YeonGyu-Kim
2026-04-15 11:27:07 +09:00
parent 0217189852
commit e1b2f97bfd
2 changed files with 23 additions and 2 deletions
@@ -46,7 +46,7 @@ describe("prompt-builder", () => {
test("#when agent is explore #then system content includes available_skills section", () => {
// given
const availableSkills: AvailableSkill[] = [
{ name: "code-review", description: "Review code quality", location: "project" },
{ name: "review-work", description: "Review code quality", location: "project" },
]
// when
@@ -57,7 +57,7 @@ describe("prompt-builder", () => {
// then
expect(result).toBeDefined()
expect(result).toContain("code-review")
expect(result).toContain("review-work")
})
test("#when availableSkills is empty #then system content does not include available_skills section", () => {