8 lines
167 B
TypeScript
Raw Normal View History

import React from 'react';
import { render, screen } from '@testing-library/react';
import App from './App';
test('renders the app', () => {
render(<App />);
});