This repository has been archived on 2025-05-09. You can view files and clone it, but cannot push or open issues or pull requests.
EvoCalculator/src/App.test.tsx
Владислав Чикалкин 1ec8e8c254 Initialize project using Create React App
2020-08-19 10:20:53 +03:00

10 lines
280 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(/learn react/i);
expect(linkElement).toBeInTheDocument();
});