Library/react — Testing
npm install --save-dev @testing-library/react @testing-library/jest-dom @testing-library/user-event In your test setup file:
export default function Greeting( name ) return <h1>Hello, name!</h1>; testing library/react
expect(screen.getByText(/loading/i)).toBeInTheDocument(); testing library/react