import * as React from "react"; import { render } from "reakit-test-utils"; import { DialogBackdrop } from "../DialogBackdrop"; test("render", () => { const { baseElement } = render(); expect(baseElement).toMatchInlineSnapshot(`
`); }); test("render visible", () => { const { baseElement } = render(); expect(baseElement).toMatchInlineSnapshot(`
`); }); test("render no modal", () => { const { container } = render( ); expect(container).toMatchInlineSnapshot(`
`); });