import { html, fixture, expect } from "@open-wc/testing";
// importing flow-core components
import "@cldcvr/flow-core";
import { FGrid } from "@cldcvr/flow-core";
describe("f-grid", () => {
it("is defined", () => {
const el = document.createElement("f-grid");
expect(el).instanceOf(FGrid);
});
it("should render with default values", async () => {
const el = await fixture(html` `);
expect(el.getAttribute("gap")).to.equal("small");
});
});