Cosmos-Server/client/src/App.test.jsx

10 lines
279 B
React
Raw Normal View History

2023-03-12 18:17:28 +00:00
import React from 'react';
import { render, screen } from '@testing-library/react';
import App from './App';
test('renders learn react link', () => {
render(<App />);
const linkElement = screen.getByText(/learn react/i);
expect(linkElement).toBeInTheDocument();
});