mirror of
https://github.com/theoludwig/theoludwig.git
synced 2024-11-05 13:01:30 +01:00
13 lines
353 B
TypeScript
13 lines
353 B
TypeScript
import { render } from '@testing-library/react'
|
|
|
|
import { Footer } from '../Footer'
|
|
|
|
describe('<Footer />', () => {
|
|
it('should render', async () => {
|
|
const version = '1.0.0'
|
|
const { getByText } = render(<Footer version={version} />)
|
|
expect(getByText('Divlo')).toBeInTheDocument()
|
|
expect(getByText(version)).toBeInTheDocument()
|
|
})
|
|
})
|