import React from "react";
import { shallow } from "enzyme";
import Grid from "./index";

describe("Grid", () => {
  it("should render div with children", () => {
    const children = <span>Test</span>;
    const wrapper = shallow(<Grid>{children}</Grid>);
    expect(wrapper.contains(children)).toBe(true);
  });
});
