mirror of
https://github.com/crypto-pro-web/crypto-pro-js.git
synced 2025-04-19 12:03:10 +03:00
10 lines
281 B
JavaScript
10 lines
281 B
JavaScript
import React from 'react';
|
|
import { render } from '@testing-library/react';
|
|
import App from './App';
|
|
|
|
xtest('renders learn react link', () => {
|
|
const { getByText } = render(<App />);
|
|
const linkElement = getByText(/learn react/i);
|
|
expect(linkElement).toBeInTheDocument();
|
|
});
|