import React from "react"; import { noop } from "lodash"; import { render, screen } from "@testing-library/react"; import Modal from "./Modal"; describe("Modal", () => { it("renders title", () => { render(
test
); expect(screen.getByText("Foobar")).toBeVisible(); }); });