// (C) 2007-2019 GoodData Corporation import { buildProject } from "../../builder"; import { schema } from "../../fixtures/dummySchema"; describe("EndPointsBuilder", () => { it("should build endPoints data", () => { const { endPoints } = buildProject(schema); expect(endPoints).toMatchSnapshot(); }); });