CoolFace
Apppublic

bunkalab/Argilla-Prompt-Exploration

sourceHugging Faceupdated 3y agoView on Hugging Face
5likes
App.test.jsx9 linesDownload Raw Back to src
1import { render, screen } from "@testing-library/react";2import App from "./App";3 4test("renders learn react link", () => {5  render(<App />);6  const linkElement = screen.getByText(/learn react/i);7  expect(linkElement).toBeInTheDocument();8});9