blob: 05d3d3e5f5a90c1e4132e14b0f3abd9ac9882a98 [file] [log] [blame]
import React from "react";
import { render, screen } from "@testing-library/react";
import { App } from "./App";
test("renders learn react link", () => {
render(<App />);
const linkElement = screen.getByText(/learn react/i);
expect(linkElement).toBeInTheDocument();
});