king
2020-07-20 2dc12c551cd60f2e3c976ed608d260b1d78ce759
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();
});