fabasoad/business-card

View on GitHub
src/__tests__/components/Footer/FooterSocial.spec.tsx

Summary

Maintainability
A
50 mins
Test Coverage
import '@testing-library/jest-dom'
import * as React from 'react'
import { render } from '@testing-library/react'

import FooterSocial from '../../../components/Footer/FooterSocial'
import { testFooterSocial } from './TestUtils'

test('should render FooterSocial correctly', () => {
  const { container } = render(<FooterSocial/>)
  testFooterSocial(container.querySelector('div'))
})