Jaime Ramírez
2020-06-11 d4efcf556bee5599b87a18da9420df2143e1c757
1
2
3
4
5
6
7
8
9
10
import React from "react";
import { render } from "@testing-library/react";
import App from "./App";
 
 
test("renders learn react link", () => {
    const { getByText } = render(<App />);
    const linkElement = getByText(/^Adopt a pup/i);
    expect(linkElement).toBeInTheDocument();
});