import { render } from '@testing-library/react'
import { Footer } from '../Footer'
describe('', () => {
it('should render with appropriate link tag version', async () => {
const version = '1.0.0'
const { getByText } = render()
const versionLink = getByText(version) as HTMLAnchorElement
expect(getByText('Divlo')).toBeInTheDocument()
expect(versionLink).toBeInTheDocument()
expect(versionLink.href).toEqual(
`https://github.com/Divlo/Divlo/releases/tag/v${version}`
)
})
})