We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7a4151e commit 38d994dCopy full SHA for 38d994d
1 file changed
cli/src/__tests__/unit/agent-mode-toggle.test.ts
@@ -11,8 +11,8 @@ describe('AgentModeToggle - buildExpandedSegments', () => {
11
for (const mode of modes) {
12
test(`returns segments with active indicator for ${mode}`, () => {
13
const segs = buildExpandedSegments(mode)
14
- // 3 mode options + 1 active indicator
15
- expect(segs.length).toBe(4)
+ // 4 mode options (DEFAULT, LITE, MAX, PLAN) + 1 active indicator
+ expect(segs.length).toBe(5)
16
17
// Current mode is disabled among the choices
18
const current = segs.find((s) => s.id === mode)
0 commit comments