chore(tsgo/format): fix CI errors

This commit is contained in:
Gustavo Madeira Santana
2026-02-21 17:51:56 -05:00
parent 6ac89757ba
commit 0e1aa77928
15 changed files with 133 additions and 59 deletions

View File

@@ -34,7 +34,7 @@ describe("program helpers", () => {
it("resolveActionArgs returns empty array for missing/invalid args", () => {
const command = new Command();
(command as Command & { args?: unknown }).args = "not-an-array";
(command as unknown as { args?: unknown }).args = "not-an-array";
expect(resolveActionArgs(command)).toEqual([]);
expect(resolveActionArgs(undefined)).toEqual([]);
});