From de7615e409492bfa27b4c1309ded25127264b4e3 Mon Sep 17 00:00:00 2001 From: helenanull Date: Mon, 4 Sep 2023 14:47:55 +0300 Subject: [PATCH 01/37] ident --- .circleci/config.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 22b1eeb..3193bde 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -1,10 +1,10 @@ version: 2.1 orbs: - cypress: cypress-io/cypress@3.1.3 + cypress: cypress-io/cypress@3.1.3 workflows: - run-cy-tests: - jobs: - - cypress/run: - cypress-command: npm run cy:ci - parallelism: 2 # use 2 CircleCI machines to finish quickly + run-cy-tests: + jobs: + - cypress/run: + cypress-command: npm run cy:ci + parallelism: 2 # use 2 CircleCI machines to finish quickly From 24b813951ab028233fb64b30775f732b14c5cc6b Mon Sep 17 00:00:00 2001 From: helenanull Date: Mon, 4 Sep 2023 14:48:46 +0300 Subject: [PATCH 02/37] ident --- .circleci/config.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 3193bde..22b1eeb 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -1,10 +1,10 @@ version: 2.1 orbs: - cypress: cypress-io/cypress@3.1.3 + cypress: cypress-io/cypress@3.1.3 workflows: - run-cy-tests: - jobs: - - cypress/run: - cypress-command: npm run cy:ci - parallelism: 2 # use 2 CircleCI machines to finish quickly + run-cy-tests: + jobs: + - cypress/run: + cypress-command: npm run cy:ci + parallelism: 2 # use 2 CircleCI machines to finish quickly From 75a5b040ff5fe8cd9c24a7e9567056274b127135 Mon Sep 17 00:00:00 2001 From: helenanull Date: Mon, 4 Sep 2023 14:50:39 +0300 Subject: [PATCH 03/37] test --- .circleci/config.yml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/.circleci/config.yml b/.circleci/config.yml index 22b1eeb..9fbbfcd 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -2,9 +2,16 @@ version: 2.1 orbs: cypress: cypress-io/cypress@3.1.3 +jobs: + install-browser: + steps: + - run: + command: npx @puppeteer/browsers install chrome@stable + workflows: run-cy-tests: jobs: + - install-browser - cypress/run: cypress-command: npm run cy:ci parallelism: 2 # use 2 CircleCI machines to finish quickly From a901b253b04d780f11c6ec702218ceeebd0f95a3 Mon Sep 17 00:00:00 2001 From: helenanull Date: Mon, 4 Sep 2023 14:51:52 +0300 Subject: [PATCH 04/37] fmt --- .circleci/config.yml | 24 +++++++++++------------- 1 file changed, 11 insertions(+), 13 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 9fbbfcd..d656a68 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -1,17 +1,15 @@ version: 2.1 orbs: - cypress: cypress-io/cypress@3.1.3 - + cypress: cypress-io/cypress@3.1.3 jobs: - install-browser: - steps: - - run: - command: npx @puppeteer/browsers install chrome@stable - + install-browser: + steps: + - run: + command: npx @puppeteer/browsers install chrome@stable workflows: - run-cy-tests: - jobs: - - install-browser - - cypress/run: - cypress-command: npm run cy:ci - parallelism: 2 # use 2 CircleCI machines to finish quickly + run-cy-tests: + jobs: + - install-browser + - cypress/run: + cypress-command: 'npm run cy:ci' + parallelism: 2 From 83591ed9a45bf00862102f529cd98874ea5a72bd Mon Sep 17 00:00:00 2001 From: helenanull Date: Mon, 4 Sep 2023 14:52:45 +0300 Subject: [PATCH 05/37] fmt --- .circleci/config.yml | 6 ------ 1 file changed, 6 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index d656a68..719a535 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -1,15 +1,9 @@ version: 2.1 orbs: cypress: cypress-io/cypress@3.1.3 -jobs: - install-browser: - steps: - - run: - command: npx @puppeteer/browsers install chrome@stable workflows: run-cy-tests: jobs: - - install-browser - cypress/run: cypress-command: 'npm run cy:ci' parallelism: 2 From 02f1ff4ccdafcdba3310b47b21f365cb160fc804 Mon Sep 17 00:00:00 2001 From: helenanull Date: Mon, 4 Sep 2023 14:53:25 +0300 Subject: [PATCH 06/37] test --- .circleci/config.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.circleci/config.yml b/.circleci/config.yml index 719a535..737f15e 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -1,6 +1,11 @@ version: 2.1 orbs: cypress: cypress-io/cypress@3.1.3 +jobs: + install-browser: + steps: + - run: + command: npx @puppeteer/browsers install chrome@stable workflows: run-cy-tests: jobs: From f18d2fccbc57e388fc6aa63912527606e79cf9c7 Mon Sep 17 00:00:00 2001 From: helenanull Date: Mon, 4 Sep 2023 14:54:49 +0300 Subject: [PATCH 07/37] test --- .circleci/config.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.circleci/config.yml b/.circleci/config.yml index 737f15e..fbe7303 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -5,6 +5,7 @@ jobs: install-browser: steps: - run: + name: test command: npx @puppeteer/browsers install chrome@stable workflows: run-cy-tests: From 8909f8ae504e9e40b524c8aaf2da46645159211d Mon Sep 17 00:00:00 2001 From: helenanull Date: Mon, 4 Sep 2023 14:55:59 +0300 Subject: [PATCH 08/37] test --- .circleci/config.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index fbe7303..02779aa 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -2,11 +2,11 @@ version: 2.1 orbs: cypress: cypress-io/cypress@3.1.3 jobs: - install-browser: + build_and_test: # this can be any name you choose steps: + - checkout - run: - name: test - command: npx @puppeteer/browsers install chrome@stable + command: npm run test workflows: run-cy-tests: jobs: From e0ef3696dbc8b748cc895a08a6b56baf4fa23dba Mon Sep 17 00:00:00 2001 From: helenanull Date: Mon, 4 Sep 2023 14:58:27 +0300 Subject: [PATCH 09/37] test --- .circleci/config.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 02779aa..f59e0ca 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -1,10 +1,11 @@ version: 2.1 orbs: cypress: cypress-io/cypress@3.1.3 + node: circleci/node@5.0.2 jobs: build_and_test: # this can be any name you choose steps: - - checkout + - executor: node/default - run: command: npm run test workflows: From d35416565e034f1064cae7608351e2db017ffb61 Mon Sep 17 00:00:00 2001 From: helenanull Date: Mon, 4 Sep 2023 14:58:51 +0300 Subject: [PATCH 10/37] test --- .circleci/config.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index f59e0ca..2ed7100 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -4,8 +4,8 @@ orbs: node: circleci/node@5.0.2 jobs: build_and_test: # this can be any name you choose + executor: node/default steps: - - executor: node/default - run: command: npm run test workflows: From 3a2d7e69d31ea82a3ed3ce82ae40a351f99084e0 Mon Sep 17 00:00:00 2001 From: helenanull Date: Mon, 4 Sep 2023 14:59:57 +0300 Subject: [PATCH 11/37] test --- .circleci/config.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 2ed7100..3c752d6 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -3,11 +3,11 @@ orbs: cypress: cypress-io/cypress@3.1.3 node: circleci/node@5.0.2 jobs: - build_and_test: # this can be any name you choose + install-browser: # this can be any name you choose executor: node/default steps: - run: - command: npm run test + command: npx @puppeteer/browsers install chrome@stable workflows: run-cy-tests: jobs: From fc7109275fe2eff4225569d11945de7ae091e252 Mon Sep 17 00:00:00 2001 From: helenanull Date: Mon, 4 Sep 2023 15:01:05 +0300 Subject: [PATCH 12/37] test --- .circleci/config.yml | 1 + package.json | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 3c752d6..f1b6c27 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -11,6 +11,7 @@ jobs: workflows: run-cy-tests: jobs: + - install-browser - cypress/run: cypress-command: 'npm run cy:ci' parallelism: 2 diff --git a/package.json b/package.json index dabac81..53232df 100644 --- a/package.json +++ b/package.json @@ -7,7 +7,7 @@ "cy:open:web": "cypress open --e2e --browser=chrome --env device=web", "cy:run:mob": "cypress run --browser=chrome --env device=mob", "cy:run:web": "cypress run --env device=web", - "cy:ci": "cypress run --env device=web --record --parallel --browser electron --headless --group=all_tests" + "cy:ci": "cypress run --env device=web --record --parallel --browser chrome --headless --group=all_tests" }, "devDependencies": { "cypress": "^13.1.0", From 1a4f9fd5b75f9faf3c5b90f60257d2ff03471a25 Mon Sep 17 00:00:00 2001 From: helenanull Date: Mon, 4 Sep 2023 15:02:23 +0300 Subject: [PATCH 13/37] test --- .circleci/config.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.circleci/config.yml b/.circleci/config.yml index f1b6c27..3169334 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -13,5 +13,7 @@ workflows: jobs: - install-browser - cypress/run: + requires: + - install-browser cypress-command: 'npm run cy:ci' parallelism: 2 From 73fe2c66e4cf063627956ec480588aaacaf5b282 Mon Sep 17 00:00:00 2001 From: helenanull Date: Mon, 4 Sep 2023 15:04:47 +0300 Subject: [PATCH 14/37] test --- .circleci/config.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.circleci/config.yml b/.circleci/config.yml index 3169334..52b679e 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -8,6 +8,10 @@ jobs: steps: - run: command: npx @puppeteer/browsers install chrome@stable + - persist_to_workspace: + root: ~/project + paths: + - . workflows: run-cy-tests: jobs: From a4bc9a3bf64f77d91173fd3a01b67ee04debb1d8 Mon Sep 17 00:00:00 2001 From: helenanull Date: Mon, 4 Sep 2023 15:09:19 +0300 Subject: [PATCH 15/37] test --- .circleci/config.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.circleci/config.yml b/.circleci/config.yml index 52b679e..385d804 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -8,6 +8,9 @@ jobs: steps: - run: command: npx @puppeteer/browsers install chrome@stable + - run: + command: | + ls - persist_to_workspace: root: ~/project paths: From cf4f25287b81db65a58deafffd753222b7bd3a23 Mon Sep 17 00:00:00 2001 From: helenanull Date: Mon, 4 Sep 2023 15:18:10 +0300 Subject: [PATCH 16/37] test --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 53232df..42a4095 100644 --- a/package.json +++ b/package.json @@ -7,7 +7,7 @@ "cy:open:web": "cypress open --e2e --browser=chrome --env device=web", "cy:run:mob": "cypress run --browser=chrome --env device=mob", "cy:run:web": "cypress run --env device=web", - "cy:ci": "cypress run --env device=web --record --parallel --browser chrome --headless --group=all_tests" + "cy:ci": "cypress run --env device=web --record --parallel --browser /project/chrome --headless --group=all_tests" }, "devDependencies": { "cypress": "^13.1.0", From 1770cab8d41fe8bee3cbbfbc55ab9ca0ef5f5255 Mon Sep 17 00:00:00 2001 From: helenanull Date: Mon, 4 Sep 2023 15:20:05 +0300 Subject: [PATCH 17/37] path --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 42a4095..232bf31 100644 --- a/package.json +++ b/package.json @@ -7,7 +7,7 @@ "cy:open:web": "cypress open --e2e --browser=chrome --env device=web", "cy:run:mob": "cypress run --browser=chrome --env device=mob", "cy:run:web": "cypress run --env device=web", - "cy:ci": "cypress run --env device=web --record --parallel --browser /project/chrome --headless --group=all_tests" + "cy:ci": "cypress run --env device=web --record --parallel --browser /chrome --headless --group=all_tests" }, "devDependencies": { "cypress": "^13.1.0", From c48e354256348bd594a66236259fb430883aaebb Mon Sep 17 00:00:00 2001 From: helenanull Date: Mon, 4 Sep 2023 15:22:38 +0300 Subject: [PATCH 18/37] test --- .circleci/config.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.circleci/config.yml b/.circleci/config.yml index 385d804..eee2a61 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -19,6 +19,9 @@ workflows: run-cy-tests: jobs: - install-browser + - run: + command: | + ls - cypress/run: requires: - install-browser From 25564b31b073c34ed475945c5020eb3c617af1e1 Mon Sep 17 00:00:00 2001 From: helenanull Date: Mon, 4 Sep 2023 15:24:26 +0300 Subject: [PATCH 19/37] test --- .circleci/config.yml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index eee2a61..e4ac0f8 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -17,11 +17,12 @@ jobs: - . workflows: run-cy-tests: - jobs: - - install-browser + steps: - run: command: | - ls + pwd && ls + jobs: + - install-browser - cypress/run: requires: - install-browser From 92a4a3de4fdc00b3d2764fe0a7a4a2afd5116d6e Mon Sep 17 00:00:00 2001 From: helenanull Date: Mon, 4 Sep 2023 15:26:43 +0300 Subject: [PATCH 20/37] test --- .circleci/config.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index e4ac0f8..ee23209 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -17,13 +17,13 @@ jobs: - . workflows: run-cy-tests: - steps: - - run: - command: | - pwd && ls jobs: - install-browser - cypress/run: + pre-steps: + run: + command: | + ls && pwd requires: - install-browser cypress-command: 'npm run cy:ci' From 3833dfd6af94507a081ebab58456a87490385889 Mon Sep 17 00:00:00 2001 From: helenanull Date: Mon, 4 Sep 2023 15:27:12 +0300 Subject: [PATCH 21/37] test --- .circleci/config.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index ee23209..e1cb0e3 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -20,7 +20,7 @@ workflows: jobs: - install-browser - cypress/run: - pre-steps: + steps: run: command: | ls && pwd From 4abfc659589fd1fbaec24dca3b0e45ae890556eb Mon Sep 17 00:00:00 2001 From: helenanull Date: Mon, 4 Sep 2023 15:28:44 +0300 Subject: [PATCH 22/37] test --- .circleci/config.yml | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index e1cb0e3..b7a9091 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -10,20 +10,22 @@ jobs: command: npx @puppeteer/browsers install chrome@stable - run: command: | - ls + ls && owd - persist_to_workspace: root: ~/project paths: - . + test: # this can be any name you choose + executor: node/default + steps: + command: | + ls && pwd workflows: run-cy-tests: jobs: - install-browser + - test - cypress/run: - steps: - run: - command: | - ls && pwd requires: - install-browser cypress-command: 'npm run cy:ci' From b2b7209d7e55cc8789e118caed457ff2316f3b98 Mon Sep 17 00:00:00 2001 From: helenanull Date: Mon, 4 Sep 2023 15:29:14 +0300 Subject: [PATCH 23/37] fix --- .circleci/config.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.circleci/config.yml b/.circleci/config.yml index b7a9091..2d6c01f 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -18,6 +18,7 @@ jobs: test: # this can be any name you choose executor: node/default steps: + - run: command: | ls && pwd workflows: From 030c834a8f61447697b5335536cbef452d5ab043 Mon Sep 17 00:00:00 2001 From: helenanull Date: Mon, 4 Sep 2023 15:30:26 +0300 Subject: [PATCH 24/37] test --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 232bf31..36dfff0 100644 --- a/package.json +++ b/package.json @@ -7,7 +7,7 @@ "cy:open:web": "cypress open --e2e --browser=chrome --env device=web", "cy:run:mob": "cypress run --browser=chrome --env device=mob", "cy:run:web": "cypress run --env device=web", - "cy:ci": "cypress run --env device=web --record --parallel --browser /chrome --headless --group=all_tests" + "cy:ci": "cypress run --env device=web --record --parallel --browser ~/project/chrome --headless --group=all_tests" }, "devDependencies": { "cypress": "^13.1.0", From 2ad3068ffb2a3876d1536a8e7a86544483468ed3 Mon Sep 17 00:00:00 2001 From: helenanull Date: Mon, 4 Sep 2023 15:30:58 +0300 Subject: [PATCH 25/37] fx --- .circleci/config.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 2d6c01f..340e953 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -10,7 +10,7 @@ jobs: command: npx @puppeteer/browsers install chrome@stable - run: command: | - ls && owd + ls && pwd - persist_to_workspace: root: ~/project paths: From b4d86b81b5c04473e1ff5eb0658bbde1d5aa5ada Mon Sep 17 00:00:00 2001 From: helenanull Date: Mon, 4 Sep 2023 15:33:45 +0300 Subject: [PATCH 26/37] tst --- .circleci/config.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.circleci/config.yml b/.circleci/config.yml index 340e953..92a46a9 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -26,6 +26,8 @@ workflows: jobs: - install-browser - test + requires: + - install-browser - cypress/run: requires: - install-browser From cae232172b7c4ec6e55092b604f62818dfff4767 Mon Sep 17 00:00:00 2001 From: helenanull Date: Mon, 4 Sep 2023 15:34:14 +0300 Subject: [PATCH 27/37] fix --- .circleci/config.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 92a46a9..4165780 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -25,7 +25,7 @@ workflows: run-cy-tests: jobs: - install-browser - - test + - test: requires: - install-browser - cypress/run: From 5593c00d1ddd6f4074ea8dc0cdfd1a07fedbc255 Mon Sep 17 00:00:00 2001 From: helenanull Date: Mon, 4 Sep 2023 15:34:43 +0300 Subject: [PATCH 28/37] fix2 --- .circleci/config.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 4165780..d9c1b35 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -26,7 +26,7 @@ workflows: jobs: - install-browser - test: - requires: + requires: - install-browser - cypress/run: requires: From a83c279ce506554d61f1b93cbe7f8c738abf9f9a Mon Sep 17 00:00:00 2001 From: helenanull Date: Mon, 4 Sep 2023 15:39:24 +0300 Subject: [PATCH 29/37] test --- .circleci/config.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.circleci/config.yml b/.circleci/config.yml index d9c1b35..bc4ac2a 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -23,6 +23,8 @@ jobs: ls && pwd workflows: run-cy-tests: + - attach_workspace: + at: ~/project jobs: - install-browser - test: From 9ff16e39cd7b6642a45c4adb035d3bc05ed4b00f Mon Sep 17 00:00:00 2001 From: helenanull Date: Tue, 5 Sep 2023 13:40:24 +0300 Subject: [PATCH 30/37] test --- .circleci/config.yml | 56 ++++++++++++++++++++------------------------ 1 file changed, 26 insertions(+), 30 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index bc4ac2a..282a5a7 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -1,37 +1,33 @@ version: 2.1 orbs: - cypress: cypress-io/cypress@3.1.3 - node: circleci/node@5.0.2 -jobs: - install-browser: # this can be any name you choose - executor: node/default - steps: - - run: - command: npx @puppeteer/browsers install chrome@stable - - run: - command: | - ls && pwd - - persist_to_workspace: - root: ~/project - paths: - - . - test: # this can be any name you choose - executor: node/default - steps: - - run: - command: | - ls && pwd + cypress: cypress-io/cypress@3.1.2 workflows: - run-cy-tests: - - attach_workspace: - at: ~/project + build: jobs: - - install-browser - - test: + - cypress/install: + build: 'npm install' + - cypress/run: requires: - - install-browser + - cypress/install + record: true # record results on Cypress Dashboard + parallel: true # split all specs across machines + parallelism: 2 # use 2 CircleCI machines to finish quickly + group: 'all tests' + weekly: + triggers: + - schedule: + cron: "0 0 * * 0" + filters: + branches: + only: + - main + jobs: + - cypress/install: + build: 'npm install' - cypress/run: requires: - - install-browser - cypress-command: 'npm run cy:ci' - parallelism: 2 + - cypress/install + record: true # record results on Cypress Dashboard + parallel: true # split all specs across machines + parallelism: 2 # use 2 CircleCI machines to finish quickly + group: 'all tests' From 3c51d51c7a7da8fd39cc7f987668aac3c110d58c Mon Sep 17 00:00:00 2001 From: helenanull Date: Tue, 5 Sep 2023 13:41:29 +0300 Subject: [PATCH 31/37] test --- .circleci/config.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 282a5a7..a3d7831 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -1,6 +1,6 @@ version: 2.1 orbs: - cypress: cypress-io/cypress@3.1.2 + cypress: cypress-io/cypress@2.1.0 workflows: build: jobs: From cf11c3bf36028b28a082f8b241d4e8092b4a1597 Mon Sep 17 00:00:00 2001 From: helenanull Date: Tue, 5 Sep 2023 13:55:35 +0300 Subject: [PATCH 32/37] test --- .circleci/config.yml | 31 +++---------------------------- package.json | 2 +- 2 files changed, 4 insertions(+), 29 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index a3d7831..023dc41 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -1,33 +1,8 @@ version: 2.1 orbs: - cypress: cypress-io/cypress@2.1.0 + cypress: cypress-io/cypress@3.1.3 workflows: build: jobs: - - cypress/install: - build: 'npm install' - - cypress/run: - requires: - - cypress/install - record: true # record results on Cypress Dashboard - parallel: true # split all specs across machines - parallelism: 2 # use 2 CircleCI machines to finish quickly - group: 'all tests' - weekly: - triggers: - - schedule: - cron: "0 0 * * 0" - filters: - branches: - only: - - main - jobs: - - cypress/install: - build: 'npm install' - - cypress/run: - requires: - - cypress/install - record: true # record results on Cypress Dashboard - parallel: true # split all specs across machines - parallelism: 2 # use 2 CircleCI machines to finish quickly - group: 'all tests' + - cypress/run # "run" job comes from "Cypress" orb + start-command: 'npm run cy:ci' diff --git a/package.json b/package.json index 36dfff0..1a4109d 100644 --- a/package.json +++ b/package.json @@ -7,7 +7,7 @@ "cy:open:web": "cypress open --e2e --browser=chrome --env device=web", "cy:run:mob": "cypress run --browser=chrome --env device=mob", "cy:run:web": "cypress run --env device=web", - "cy:ci": "cypress run --env device=web --record --parallel --browser ~/project/chrome --headless --group=all_tests" + "cy:ci": "cypress run --env device=web --record --parallel --browser chrome --headless" }, "devDependencies": { "cypress": "^13.1.0", From 5cdff7f047f70bb950637ed99118af3954b2a4f5 Mon Sep 17 00:00:00 2001 From: helenanull Date: Tue, 5 Sep 2023 13:57:04 +0300 Subject: [PATCH 33/37] test --- .circleci/config.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 023dc41..dfceb21 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -4,5 +4,6 @@ orbs: workflows: build: jobs: - - cypress/run # "run" job comes from "Cypress" orb - start-command: 'npm run cy:ci' + - cypress/run: + cypress-command: 'npx cypress run --parallel --record' + parallelism: 2 From 6478e88a91df58fe2612aeca9e925fcb3595240c Mon Sep 17 00:00:00 2001 From: helenanull Date: Tue, 5 Sep 2023 14:01:54 +0300 Subject: [PATCH 34/37] ignore screenshots folder --- .gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/.gitignore b/.gitignore index 5e8d1ed..eaf7c8d 100644 --- a/.gitignore +++ b/.gitignore @@ -5,3 +5,4 @@ bin-release/ /screenshots cypress/videos /node_modules +cypress/screenshots \ No newline at end of file From b152640f3d22387f17c4e98fe30fa999e2f0f6ef Mon Sep 17 00:00:00 2001 From: helenanull Date: Tue, 5 Sep 2023 15:36:23 +0300 Subject: [PATCH 35/37] test --- .circleci/config.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index dfceb21..76d6293 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -6,4 +6,4 @@ workflows: jobs: - cypress/run: cypress-command: 'npx cypress run --parallel --record' - parallelism: 2 + parallelism: 1 From 7bc2cf6800862a9c835b3508821bda7542c13903 Mon Sep 17 00:00:00 2001 From: helenanull Date: Wed, 6 Sep 2023 13:53:35 +0300 Subject: [PATCH 36/37] conf --- .circleci/config.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 76d6293..dfceb21 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -6,4 +6,4 @@ workflows: jobs: - cypress/run: cypress-command: 'npx cypress run --parallel --record' - parallelism: 1 + parallelism: 2 From 64e30ba7db9f84a8e6845aff070d2b538f419ff1 Mon Sep 17 00:00:00 2001 From: helenanull Date: Wed, 6 Sep 2023 14:20:41 +0300 Subject: [PATCH 37/37] weekly> --- .circleci/config.yml | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/.circleci/config.yml b/.circleci/config.yml index dfceb21..9f4e7ce 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -7,3 +7,15 @@ workflows: - cypress/run: cypress-command: 'npx cypress run --parallel --record' parallelism: 2 + weekly: + triggers: + - schedule: + cron: "0 0 * * 0" + filters: + branches: + only: + - main + jobs: + - cypress/run: + cypress-command: 'npx cypress run --parallel --record' + parallelism: 2