From bfcd4f17e69da9f43d128496f0e94222e289b195 Mon Sep 17 00:00:00 2001 From: OM Date: Sat, 23 Dec 2023 18:24:51 +0000 Subject: [PATCH] fix: cypress test --- cypress/e2e/index.cy.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cypress/e2e/index.cy.ts b/cypress/e2e/index.cy.ts index ed400bc..5d0a219 100644 --- a/cypress/e2e/index.cy.ts +++ b/cypress/e2e/index.cy.ts @@ -2,5 +2,5 @@ it("titles are correct", () => { const page = cy.visit("http://localhost:4321"); page.get("title").should("have.text", "Astro is awesome!"); - page.get("h2").should("have.text", "Hello world from Astro"); + page.get("h1").should("have.text", "Hello world from Astro"); });