From 228e1586177a2592391e6587fef1b2b3396dfd65 Mon Sep 17 00:00:00 2001 From: Mike McCready <66998419+MikeMcC399@users.noreply.github.com> Date: Fri, 2 Jun 2023 19:47:46 +0200 Subject: [PATCH 1/5] chore: add cypress/downloads to .gitignore (#81) --- .gitignore | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index a15e0b3b..c8b28e97 100644 --- a/.gitignore +++ b/.gitignore @@ -1,6 +1,9 @@ mochawesome-report/ node_modules/ report/ -cypress/videos .DS_Store + +# Temporary Cypress files +cypress/downloads cypress/screenshots +cypress/videos From 80b0d588ad5ec4ae094fc575d64d5d74fd994cf3 Mon Sep 17 00:00:00 2001 From: Bill Glesias Date: Tue, 5 Sep 2023 13:05:59 -0400 Subject: [PATCH 2/5] chore: update to node18 (#84) --- circle.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/circle.yml b/circle.yml index d006553c..a5f2648e 100644 --- a/circle.yml +++ b/circle.yml @@ -3,14 +3,13 @@ version: 2.1 # for testing on Windows -# https://circleci.com/docs/2.0/hello-world-windows/ orbs: - win: circleci/windows@1 + win: circleci/windows@5 executors: mac: macos: - xcode: "13.0.0" + xcode: "14.0.1" jobs: mac-test: @@ -30,7 +29,7 @@ jobs: linux-test: docker: # find Docker image at https://github.com/cypress-io/cypress-docker-images - - image: cypress/base:16.18.1 + - image: cypress/base:18.16.1 working_directory: ~/repo @@ -46,7 +45,7 @@ jobs: win-test: working_directory: ~/app executor: - name: win/vs2019 + name: win/default shell: bash.exe steps: - checkout @@ -67,3 +66,4 @@ workflows: context: test-runner:commit-status-checks - mac-test: context: test-runner:commit-status-checks + From 2b4a23f6ecf07b9d98c9d9bee0f55adb7d6fce67 Mon Sep 17 00:00:00 2001 From: Bill Glesias Date: Wed, 20 Sep 2023 10:54:45 -0400 Subject: [PATCH 3/5] chore: update xcode to get on latest gen2 macOS executor (#86) --- circle.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/circle.yml b/circle.yml index a5f2648e..af3bbf9c 100644 --- a/circle.yml +++ b/circle.yml @@ -9,7 +9,8 @@ orbs: executors: mac: macos: - xcode: "14.0.1" + xcode: "14.3.1" + resource_class: macos.x86.medium.gen2 jobs: mac-test: From f01f393dd4494f05f2ad0a4cc28cdad5d6e6e23a Mon Sep 17 00:00:00 2001 From: Jennifer Shehane Date: Wed, 24 Apr 2024 12:14:23 -0400 Subject: [PATCH 4/5] chore: Update circle.yml to use m1 resource class (#89) --- circle.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/circle.yml b/circle.yml index af3bbf9c..9155ee3b 100644 --- a/circle.yml +++ b/circle.yml @@ -10,7 +10,7 @@ executors: mac: macos: xcode: "14.3.1" - resource_class: macos.x86.medium.gen2 + resource_class: macos.m1.medium.gen1 jobs: mac-test: From cee977739c5ad6d0684e3dd5e20157c0ee395d4c Mon Sep 17 00:00:00 2001 From: carla <1carla.piedra@gmail.com> Date: Mon, 2 Sep 2024 18:22:27 +0200 Subject: [PATCH 5/5] Added new test case to check page title --- cypress/e2e/spec.cy.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cypress/e2e/spec.cy.js b/cypress/e2e/spec.cy.js index 5e30bf9e..6c7891c3 100644 --- a/cypress/e2e/spec.cy.js +++ b/cypress/e2e/spec.cy.js @@ -2,5 +2,5 @@ describe('page', () => { it('works', () => { cy.visit('https://example.cypress.io') - }) + cy.title().should(`include´,`Cypress.io´ }) })