1// https://docs.cypress.io/api/introduction/api.html 2 3describe("My First Test", () => { 4 it("Visits the app root url", () => { 5 cy.visit("/"); 6 cy.contains("h1", "Welcome to Your Vue.js + TypeScript App"); 7 }); 8}); 9 10