import React from "react";
import renderer from "react-test-renderer";
import DialogContentContainer from "../DialogContentContainer";
it("renders correctly with empty props", () => {
const tree = renderer.create().toJSON();
expect(tree).toMatchSnapshot();
});
it("renders correctly with data-testid", () => {
const tree = renderer.create().toJSON();
expect(tree).toMatchSnapshot();
});