UNPKG

@apistudio/apim-cli

Version:

CLI for API Management Products

12 lines (10 loc) 364 B
/** * Copyright IBM Corp. 2024, 2025 */ import { GatewayFactory } from "../../src/model-factories/gateway.factory.js"; import { gatewayEnv } from "../__mocks__/test-data/gateway.data.js"; describe("GatewayFactory", () => { it("should validate a valid gateway object", () => { expect(() => new GatewayFactory().create(gatewayEnv)).not.toThrow(); }); });