mirror of
https://github.com/xlorepdarkhelm/numinar-coding-project.git
synced 2026-09-09 12:19:48 -04:00
9 lines
246 B
TypeScript
9 lines
246 B
TypeScript
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();
|
|
});
|