fix: relax image tool agentDir guard

This commit is contained in:
Peter Steinberger
2026-01-12 18:12:51 +00:00
parent 9526f9861a
commit 2ed95634fe
4 changed files with 21 additions and 9 deletions

View File

@@ -14,7 +14,9 @@ vi.mock("../commands/models.js", async () => {
});
describe("models cli", () => {
it("registers github-copilot login command", async () => {
it(
"registers github-copilot login command",
async () => {
const { Command } = await import("commander");
const { registerModelsCli } = await import("./models-cli.js");
@@ -44,5 +46,7 @@ describe("models cli", () => {
expect.objectContaining({ yes: true }),
expect.any(Object),
);
});
},
15_000,
);
});