2
2
mirror of https://github.com/Thream/website.git synced 2024-07-21 09:28:32 +02:00
website/cypress/component/components/Footer.cy.tsx

17 lines
478 B
TypeScript

import { Footer } from "../../../components/Footer"
describe("<Footer />", () => {
it("should render with appropriate link tag version", () => {
const version = "1.0.0"
cy.mount(<Footer version={version} />)
cy.contains("Thream")
.get("[data-cy=version-link-website]")
.should("have.text", `website v${version}`)
.should(
"have.attr",
"href",
`https://github.com/Thream/website/releases/tag/v${version}`,
)
})
})