fabasoad/business-card

View on GitHub
src/__tests__/components/Footer/FooterLocation.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 FooterLocation from '../../../components/Footer/FooterLocation'
import { testFooterLocation } from './TestUtils'

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