fix(cli): fix type error in SkillCommandLoader tests

This commit is contained in:
Taylor Mullen
2026-03-10 10:25:55 -07:00
parent 062e6596d3
commit ce41f3a05c

View File

@@ -119,7 +119,7 @@ describe('SkillCommandLoader', () => {
expect(commands[0].name).toBe('my-awesome-skill');
// eslint-disable-next-line @typescript-eslint/no-explicit-any
const actionResult = await commands[0].action!({} as any, '');
const actionResult = (await commands[0].action!({} as any, '')) as any;
expect(actionResult.toolArgs).toEqual({ name: 'my awesome skill' });
});
});