react_template/src/App.test.tsx
2021-05-31 09:42:54 +02:00

9 lines
279 B
TypeScript

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(/Your tasks/i);
expect(linkElement).toBeInTheDocument();
});