8 lines
213 B
TypeScript
8 lines
213 B
TypeScript
import { render } from '@testing-library/react';
|
|
import App from './App';
|
|
|
|
it('renders without crashing', () => {
|
|
const { asFragment, container } = render(<App />);
|
|
expect(asFragment()).toMatchSnapshot();
|
|
});
|