From 8762038b0e52acdd293a77d2d370de799dbb2d80 Mon Sep 17 00:00:00 2001 From: pomelo-nwu Date: Thu, 11 Sep 2025 13:42:59 +0800 Subject: [PATCH] fix: update chatCommand test to expect 4 subcommands after removing summary --- packages/cli/src/ui/commands/chatCommand.test.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/cli/src/ui/commands/chatCommand.test.ts b/packages/cli/src/ui/commands/chatCommand.test.ts index 8347061d..1efb0711 100644 --- a/packages/cli/src/ui/commands/chatCommand.test.ts +++ b/packages/cli/src/ui/commands/chatCommand.test.ts @@ -90,7 +90,7 @@ describe('chatCommand', () => { it('should have the correct main command definition', () => { expect(chatCommand.name).toBe('chat'); expect(chatCommand.description).toBe('Manage conversation history.'); - expect(chatCommand.subCommands).toHaveLength(5); + expect(chatCommand.subCommands).toHaveLength(4); }); describe('list subcommand', () => {