import RootLayout from "../../app/layout";

describe("RootLayout", () => {
  it("wraps children", () => {
    const element = RootLayout({ children: <div>Child content</div> });

    expect(element.type).toBe("html");
  });
});
