diff --git a/cypress/e2e/home.cy.js b/cypress/e2e/home.cy.js new file mode 100644 index 0000000..35225f1 --- /dev/null +++ b/cypress/e2e/home.cy.js @@ -0,0 +1,6 @@ +describe('The home page', () => { + it('successfully loads', () => { + cy.visit('/') + + }) +}) diff --git a/cypress/e2e/spec.cy.js b/cypress/e2e/spec.cy.js deleted file mode 100644 index 5d02ef1..0000000 --- a/cypress/e2e/spec.cy.js +++ /dev/null @@ -1,6 +0,0 @@ -describe('My First Test', () => { - it('Visits the Kitchen Sink', () => { - cy.visit('https://example.cypress.io') - cy.contains('type').click() - }) -})