Spaces:
Running
Running
File size: 342 Bytes
0602d10 00f84fb 0602d10 00f84fb | 1 2 3 4 5 6 7 8 9 10 11 12 | import React from 'react';
import { render, screen } from '@testing-library/react';
import App from './App';
// This file is not used in the app and can be deleted for cleanup.
test('renders learn react link', () => {
render(<App />);
const linkElement = screen.getByText(/learn react/i);
expect(linkElement).toBeInTheDocument();
});
|