UNPKG

@tsed/schema

Version:
12 lines (9 loc) 397 B
import {operationIdFormatter} from "./operationIdFormatter.js"; describe("operationIdFormatter", () => { it("should define new OperationId", () => { const formatter = operationIdFormatter(); expect(formatter("Test", "test")).toBe("testTest"); expect(formatter("Test", "test")).toBe("testTest_1"); expect(formatter("Test", "test", "/path/{id}")).toBe("testTestById"); }); });