chore: changelog for #293

This commit is contained in:
Peter Steinberger
2026-01-06 15:32:06 +01:00
parent b91012b697
commit 3ff17b70ea
2 changed files with 6 additions and 1 deletions

View File

@@ -1,4 +1,4 @@
import { describe, expect, it, vi } from "vitest";
import { beforeEach, describe, expect, it, vi } from "vitest";
import { callGatewayTool, resolveGatewayOptions } from "./gateway.js";
@@ -8,6 +8,10 @@ vi.mock("../../gateway/call.js", () => ({
}));
describe("gateway tool defaults", () => {
beforeEach(() => {
callGatewayMock.mockReset();
});
it("leaves url undefined so callGateway can use config", () => {
const opts = resolveGatewayOptions();
expect(opts.url).toBeUndefined();