mirror of
https://github.com/theoludwig/theoludwig.git
synced 2024-11-05 13:01:30 +01:00
28 lines
1016 B
TypeScript
28 lines
1016 B
TypeScript
import { render } from '@testing-library/react'
|
|
|
|
import { Footer } from '../Footer'
|
|
|
|
describe('<Footer />', () => {
|
|
it('should render the version link pointing to the GitHub release', async () => {
|
|
const version = '1.0.0'
|
|
const { getByText } = render(<Footer version={version} />)
|
|
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}`
|
|
)
|
|
})
|
|
|
|
it('should render the version link pointing to the `develop` branch', async () => {
|
|
const version = '0.0.0-development'
|
|
const { getByText } = render(<Footer version={version} />)
|
|
const versionLink = getByText(version) as HTMLAnchorElement
|
|
expect(getByText('Divlo')).toBeInTheDocument()
|
|
expect(versionLink).toBeInTheDocument()
|
|
expect(versionLink.href).toEqual(
|
|
'https://github.com/Divlo/Divlo/tree/develop'
|
|
)
|
|
})
|
|
})
|