diff --git a/test/end-to-end/cypress/landingpage-spec.cy.js b/test/end-to-end/cypress/landingpage-spec.cy.js new file mode 100644 index 00000000..886aec3b --- /dev/null +++ b/test/end-to-end/cypress/landingpage-spec.cy.js @@ -0,0 +1,6 @@ +describe("landing page spec", () => { + it("visits OMIS landing page", () => { + cy.visit("http://localhost:4000"); + cy.get("h1").should("exist").and("have.text", "About this service"); + }); +});