Files
web/cypress/e2e/hello-world.cy.js
Simon Emanuelsson b130ce11c6 feat: add cypress
2024-02-29 17:52:29 +01:00

7 lines
144 B
JavaScript

describe("Hello World", () => {
it("should have an h1 tag", () => {
cy.visit("/en/test")
cy.get("h1").contains("Hello World")
})
})