Files
tcc-vamos-frontend/src/App.test.tsx
Matheus Albino Brunhara c1add15b38 Initial commit
2022-03-27 19:10:25 -03:00

9 lines
227 B
TypeScript

import React from 'react';
import { render } from '@testing-library/react';
import App from './App';
test('renders without crashing', () => {
const { baseElement } = render(<App />);
expect(baseElement).toBeDefined();
});