ElectronicBabylonianLiterature/ebl-frontend

View on GitHub
src/dictionary/ui/display/EmptySection.test.tsx

Summary

Maintainability
A
0 mins
Test Coverage
import React from 'react'
import { render, screen } from '@testing-library/react'
import { EmptySection } from 'dictionary/ui/display/EmptySection'

test('EmptySection', () => {
  render(<EmptySection />)
  expect(screen.getByText('No entries')).toBeVisible()
})