fix: update chatCommand test to expect 4 subcommands after removing summary

This commit is contained in:
pomelo-nwu
2025-09-11 13:42:59 +08:00
parent f6cbb410ae
commit 8762038b0e

View File

@@ -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', () => {