test(react): add react e2e app

This commit is contained in:
Ely Lucas
2021-10-12 15:10:03 -06:00
committed by GitHub
parent 4075ea6941
commit ea34e50430
78 changed files with 65859 additions and 18670 deletions

View File

@ -0,0 +1,8 @@
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();
});