fix(ci): annotate shared skill-install test mocks

This commit is contained in:
Peter Steinberger
2026-02-22 18:10:50 +00:00
parent 2858901441
commit 8801130c5d
2 changed files with 8 additions and 8 deletions

View File

@@ -30,7 +30,7 @@ vi.mock("../shared/config-eval.js", async (importOriginal) => {
const actual = await importOriginal<typeof import("../shared/config-eval.js")>();
return {
...actual,
hasBinary: (...args: unknown[]) => hasBinaryMock(...args),
hasBinary: (bin: string) => hasBinaryMock(bin),
};
});