Skip to content
Snippets Groups Projects
Select Git revision
  • 7a0c3b17729eac2b4753ef44158f9c90c2a7d0d1
  • master default protected
2 results

config.cpython-310.pyc

Blame
  • App.test.js 246 B
    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();
    });