log101-dot-dev/cypress/e2e/index.cy.js

8 lines
221 B
JavaScript
Raw Normal View History

2024-06-13 13:57:22 +00:00
describe("Home", () =>
it("titles are correct", () => {
const page = cy.visit("http://localhost:4321");
page.get("title").should("have.text", "log101");
page.get("h1").should("have.text", "Log101");
}));