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