Skip to content

Commit

Permalink
add super basic cypress test
Browse files Browse the repository at this point in the history
  • Loading branch information
jendiamond committed Jul 24, 2024
1 parent bff3776 commit 5d553c2
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions cypress/e2e/eventDetailPage.spec.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
describe("Event Detail page", () => {
it("Visit a event Detail Page", () => {
cy.visit("/events/la-région-centrale-03-08-24")

cy.get("h1.title").should("contain", "TEST - La Région Centrale Screening")

cy.percySnapshot({ widths: [768, 992, 1200] })
})
})

0 comments on commit 5d553c2

Please sign in to comment.