feat(acp): add /help command (#24839)

This commit is contained in:
Sri Pasumarthi
2026-04-07 13:01:44 -07:00
committed by GitHub
parent d29da15427
commit 06fcdc231c
4 changed files with 108 additions and 0 deletions

View File

@@ -29,5 +29,8 @@ describe('CommandHandler', () => {
const about = parse('/about');
expect(about.commandToExecute?.name).toBe('about');
const help = parse('/help');
expect(help.commandToExecute?.name).toBe('help');
});
});