fabasoad/business-card

View on GitHub
src/__tests__/components/Menu/MenuMain.spec.tsx

Summary

Maintainability
A
50 mins
Test Coverage
import '@testing-library/jest-dom'
import * as React from 'react'
import MenuMain from '../../../components/Menu/MenuMain'
import { render } from '@testing-library/react'
import { testMenuMain } from './TestUtils'

describe('MenuMain', () => {
  test('should render MenuMain correctly', () => {
    const { container } = render(<MenuMain/>)
    testMenuMain(container.querySelector('div#nav'))
  })
})