diff options
Diffstat (limited to 'cypress/e2e/example.cy.ts')
-rw-r--r-- | cypress/e2e/example.cy.ts | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/cypress/e2e/example.cy.ts b/cypress/e2e/example.cy.ts new file mode 100644 index 0000000..3130c00 --- /dev/null +++ b/cypress/e2e/example.cy.ts @@ -0,0 +1,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!"); + }); +}); |