style: fix formatting

This commit is contained in:
Hector Flores 2026-01-29 11:30:02 -06:00
parent 448dadecf3
commit a984252f7a
2 changed files with 2 additions and 5 deletions

View File

@ -80,7 +80,7 @@ const COPILOT_MODEL_ALIASES: Record<string, string> = {
"gpt-4.1-mini": "gpt-4.1-mini",
"gpt-4.1-nano": "gpt-4.1-nano",
"gpt-4o": "gpt-4o",
"o1": "o1",
o1: "o1",
"o1-mini": "o1-mini",
"o3-mini": "o3-mini",
"claude-sonnet-4.5": "claude-sonnet-4.5",

View File

@ -31,10 +31,7 @@ describe("copilot-credentials", () => {
it("uses custom cliPath when provided", () => {
const execSync = vi.fn().mockReturnValue("0.0.1");
isCopilotCliInstalled({ cliPath: "/usr/local/bin/copilot", execSync });
expect(execSync).toHaveBeenCalledWith(
"/usr/local/bin/copilot --version",
expect.any(Object),
);
expect(execSync).toHaveBeenCalledWith("/usr/local/bin/copilot --version", expect.any(Object));
});
});