summaryrefslogtreecommitdiff
path: root/cypress/e2e/example.cy.ts
blob: 3130c0011aac54feb8d4ab543e41792e219211ef (plain)
1
2
3
4
5
6
7
8
// https://docs.cypress.io/api/introduction/api.html

describe("My First Test", () => {
  it("visits the app root url", () => {
    cy.visit("/");
    cy.contains("h1", "You did it!");
  });
});