1
0
Fork 0
impress-2020/app/src/App.test.js
2020-04-21 17:49:52 -07:00

9 lines
280 B
JavaScript

import React from 'react';
import { render } from '@testing-library/react';
import App from './App';
test('renders learn react link', () => {
const { getByText } = render(<App />);
const linkElement = getByText(/learn react/i);
expect(linkElement).toBeInTheDocument();
});