import * as React from "react";
import { render } from "reakit-test-utils";
import { Group } from "../Group";

test("render", () => {
  const { baseElement } = render(<Group />);
  expect(baseElement).toMatchInlineSnapshot(`
    <body>
      <div>
        <div
          role="group"
        />
      </div>
    </body>
  `);
});
