10 lines
251 B
JavaScript
10 lines
251 B
JavaScript
import { render } from '@testing-library/react';
|
|
|
|
// CUT = Component Under Test
|
|
import CUT from '../components/_helloworld';
|
|
|
|
it('renders homepage unchanged', () => {
|
|
const { container } = render(<CUT />);
|
|
expect(container).toMatchSnapshot();
|
|
});
|