From 935c73c4022ff26801f9daba3546ec793adccf83 Mon Sep 17 00:00:00 2001 From: Yisroel Baum Date: Sun, 22 Mar 2026 10:02:46 +0200 Subject: [PATCH] rename spec file --- cypress/e2e/home.cy.js | 6 ++++++ cypress/e2e/spec.cy.js | 6 ------ 2 files changed, 6 insertions(+), 6 deletions(-) create mode 100644 cypress/e2e/home.cy.js delete mode 100644 cypress/e2e/spec.cy.js 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() - }) -})