2021-04-20 18:23:05 +02:00
|
|
|
import { render } from '@testing-library/react'
|
|
|
|
|
|
|
|
import { Footer } from '../Footer'
|
|
|
|
|
|
|
|
describe('<Footer />', () => {
|
2021-08-13 15:48:29 +02:00
|
|
|
it('should render with appropriate link tag version', async () => {
|
2021-07-27 13:36:35 +02:00
|
|
|
const version = '1.0.0'
|
|
|
|
const { getByText } = render(<Footer version={version} />)
|
2021-08-13 15:48:29 +02:00
|
|
|
const versionLink = getByText(version) as HTMLAnchorElement
|
2021-04-20 18:23:05 +02:00
|
|
|
expect(getByText('Divlo')).toBeInTheDocument()
|
2021-08-13 15:48:29 +02:00
|
|
|
expect(versionLink).toBeInTheDocument()
|
|
|
|
expect(versionLink.href).toEqual(
|
|
|
|
`https://github.com/Divlo/Divlo/releases/tag/v${version}`
|
|
|
|
)
|
2021-04-20 18:23:05 +02:00
|
|
|
})
|
|
|
|
})
|