We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6a36994 commit dd8d94cCopy full SHA for dd8d94c
packages/cli/src/__tests__/commands/skill.test.ts
@@ -73,7 +73,6 @@ describe('skill command', () => {
73
74
expect(ui.warning).toHaveBeenCalledWith('Skill selection cancelled.');
75
expect(ui.error).not.toHaveBeenCalled();
76
- expect(process.exit).not.toHaveBeenCalled();
77
});
78
79
it('registers the add command with an optional skill-name argument', () => {
@@ -84,6 +83,6 @@ describe('skill command', () => {
84
83
const addCommand = skillCommand?.commands.find(command => command.name() === 'add');
85
86
expect(addCommand?.usage()).toContain('<registry-repo>');
87
- expect(addCommand?.usage()).toContain('[skill-name]');
+ expect(addCommand?.usage()).toContain('<skill-name>');
88
89
0 commit comments