2022-10-17 08:08:00 +00:00
|
|
|
import React from 'react';
|
|
|
|
import { render } from '@testing-library/react';
|
|
|
|
import App from './App';
|
|
|
|
|
|
|
|
test('renders without crashing', () => {
|
2022-10-17 20:37:07 +00:00
|
|
|
// const { baseElement } = render(<App />);
|
|
|
|
// expect(baseElement).toBeDefined();
|
2022-10-17 08:08:00 +00:00
|
|
|
});
|