king
2020-07-21 fe6e87bacbb4be97260427346321edeeee26258e
1
2
3
4
5
6
7
8
9
import React from 'react';
import { render } from '@testing-library/react';
import App from './page/main';
 
test('renders learn react link', () => {
  const { getByText } = render(<App />);
  const linkElement = getByText(/learn react/i);
  expect(linkElement).toBeInTheDocument();
});