1
1
mirror of https://github.com/theoludwig/theoludwig.git synced 2024-09-19 22:15:53 +02:00
.profile/components/__test__/Footer.test.tsx

17 lines
546 B
TypeScript
Raw Normal View History

2021-04-20 18:23:05 +02:00
import { render } from '@testing-library/react'
import { Footer } from '../Footer'
describe('<Footer />', () => {
2021-12-04 15:52:51 +01:00
it('should render with appropriate link tag version', () => {
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
})
})