Skip to content

Commit 38d994d

Browse files
committed
Fix tests
1 parent 7a4151e commit 38d994d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

cli/src/__tests__/unit/agent-mode-toggle.test.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@ describe('AgentModeToggle - buildExpandedSegments', () => {
1111
for (const mode of modes) {
1212
test(`returns segments with active indicator for ${mode}`, () => {
1313
const segs = buildExpandedSegments(mode)
14-
// 3 mode options + 1 active indicator
15-
expect(segs.length).toBe(4)
14+
// 4 mode options (DEFAULT, LITE, MAX, PLAN) + 1 active indicator
15+
expect(segs.length).toBe(5)
1616

1717
// Current mode is disabled among the choices
1818
const current = segs.find((s) => s.id === mode)

0 commit comments

Comments
 (0)