example.cy.js 195 B

12345678
  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. });