8 lines
169 B
TypeScript
8 lines
169 B
TypeScript
import React from 'react';
|
|
import { render } from '@testing-library/react';
|
|
import App from './App';
|
|
|
|
test('renders App', () => {
|
|
render(<App faro={undefined}/>);
|
|
});
|