From ce41f3a05c01863780ee7a7f7ca892b3a37ac15f Mon Sep 17 00:00:00 2001 From: Taylor Mullen Date: Tue, 10 Mar 2026 10:25:55 -0700 Subject: [PATCH] fix(cli): fix type error in SkillCommandLoader tests --- packages/cli/src/services/SkillCommandLoader.test.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/cli/src/services/SkillCommandLoader.test.ts b/packages/cli/src/services/SkillCommandLoader.test.ts index af98ba5909..15a2ebec18 100644 --- a/packages/cli/src/services/SkillCommandLoader.test.ts +++ b/packages/cli/src/services/SkillCommandLoader.test.ts @@ -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' }); }); });