example.cy.ts 195 B

123456789
  1. // https://docs.cypress.io/api/introduction/api.html
  2. describe("My First Test", () => {
  3. it("visits the app root url", () => {
  4. cy.visit("/");
  5. cy.contains("h1", "You did it!");
  6. });
  7. });