aboutsummaryrefslogtreecommitdiff
path: root/src/components/footer/footer.test.tsx
blob: 09892e5caf86185ffd4e47413a8e5523b52e5911 (plain)
1
2
3
4
5
6
7
8
9
10
import { render } from '@testing-library/react'

import Footer from './footer'

test('Footer renders', () => {
  const { container } = render(<Footer />)
  const footer = container.firstElementChild!

  expect(footer).toMatchSnapshot()
})