fontmap / src /App.test.js
tfrere's picture
tfrere HF Staff
first commit
eebc40f
raw
history blame
246 Bytes
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();
});