2021-06-26 17:48:20 +09:00
|
|
|
import { render, screen } from '@testing-library/react';
|
|
|
|
import App from './App';
|
|
|
|
|
2021-06-26 17:57:20 +09:00
|
|
|
/*test('renders learn react link', () => {
|
2021-06-26 17:48:20 +09:00
|
|
|
render(<App />);
|
|
|
|
const linkElement = screen.getByText(/learn react/i);
|
|
|
|
expect(linkElement).toBeInTheDocument();
|
2021-06-26 17:57:20 +09:00
|
|
|
});*/
|