From 7f4c2d29e5fe3b0a4abb54009f83a38e02060856 Mon Sep 17 00:00:00 2001 From: David Kasper Date: Mon, 29 Jul 2024 13:36:44 -0500 Subject: [PATCH 1/4] test out PR comments --- cypress/e2e/spec.cy.js | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/cypress/e2e/spec.cy.js b/cypress/e2e/spec.cy.js index 5e30bf9e..416f94aa 100644 --- a/cypress/e2e/spec.cy.js +++ b/cypress/e2e/spec.cy.js @@ -3,4 +3,8 @@ describe('page', () => { it('works', () => { cy.visit('https://example.cypress.io') }) + + it('works too', () => { + cy.visit('https://example.cypress.io') + }) }) From 137b3b5669e965ddfc121495d9dc8b9ea0e821ed Mon Sep 17 00:00:00 2001 From: David Kasper Date: Mon, 29 Jul 2024 15:27:25 -0500 Subject: [PATCH 2/4] try this --- cypress.config.js | 1 + 1 file changed, 1 insertion(+) diff --git a/cypress.config.js b/cypress.config.js index bc214b1d..20d78e17 100644 --- a/cypress.config.js +++ b/cypress.config.js @@ -1,4 +1,5 @@ module.exports = { + projectId: '72c554', e2e: { setupNodeEvents(on, config) {}, }, From 863370fd8e5bc73f14038a67d5886a20be3c1a5b Mon Sep 17 00:00:00 2001 From: David Kasper Date: Mon, 29 Jul 2024 15:43:11 -0500 Subject: [PATCH 3/4] maybe this --- cypress.config.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cypress.config.js b/cypress.config.js index 20d78e17..661ce03d 100644 --- a/cypress.config.js +++ b/cypress.config.js @@ -1,5 +1,5 @@ module.exports = { - projectId: '72c554', + projectId: 'a14ir1', e2e: { setupNodeEvents(on, config) {}, }, From 304c8801c6579ae9d169aadab4db0e29a3391c50 Mon Sep 17 00:00:00 2001 From: Emily Rohrbough Date: Mon, 29 Jul 2024 16:28:57 -0500 Subject: [PATCH 4/4] Update spec.cy.js --- cypress/e2e/spec.cy.js | 1 + 1 file changed, 1 insertion(+) diff --git a/cypress/e2e/spec.cy.js b/cypress/e2e/spec.cy.js index 416f94aa..9a632c71 100644 --- a/cypress/e2e/spec.cy.js +++ b/cypress/e2e/spec.cy.js @@ -6,5 +6,6 @@ describe('page', () => { it('works too', () => { cy.visit('https://example.cypress.io') + cy.contains('google') }) })