From 448973941251ce8f1d5eca95729bbade5353091c Mon Sep 17 00:00:00 2001 From: Vadym Nastoiashchyi <58398016+VadimNastoyashchy@users.noreply.github.com> Date: Tue, 20 Dec 2022 09:09:47 +0200 Subject: [PATCH 1/5] Update github-actions-manually.yml --- .github/workflows/github-actions-manually.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/github-actions-manually.yml b/.github/workflows/github-actions-manually.yml index 2963143..29b2b02 100644 --- a/.github/workflows/github-actions-manually.yml +++ b/.github/workflows/github-actions-manually.yml @@ -13,4 +13,4 @@ jobs: - name: Install dependencies run: npm install - name: Cypress run - run: npx cypress run --record --key acf5a95a-f5fe-4d53-818a-a6afa18e512c \ No newline at end of file + run: npx cypress run --record --key acf5a95a-f5fe-4d53-818a-a6afa18e512c --parallel From db1cd31e7682c0644c8b1e414dfdd914632933c5 Mon Sep 17 00:00:00 2001 From: Vadym Nastoiashchyi <58398016+VadimNastoyashchy@users.noreply.github.com> Date: Tue, 20 Dec 2022 09:23:06 +0200 Subject: [PATCH 2/5] Update github-actions-manually.yml --- .github/workflows/github-actions-manually.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/github-actions-manually.yml b/.github/workflows/github-actions-manually.yml index 29b2b02..44ae6aa 100644 --- a/.github/workflows/github-actions-manually.yml +++ b/.github/workflows/github-actions-manually.yml @@ -3,6 +3,9 @@ on: [workflow_dispatch] jobs: cypress-run: runs-on: ubuntu-latest + strategy: + matrix: + job: [0, 1, 2, 3] steps: - name: Checkout uses: actions/checkout@v2 From db3ff01db29b8d3c59e50f9fa5a42501e46efd59 Mon Sep 17 00:00:00 2001 From: Vadym Nastoiashchyi <58398016+VadimNastoyashchy@users.noreply.github.com> Date: Fri, 2 Feb 2024 10:08:13 +0200 Subject: [PATCH 3/5] Update cypress.config.js --- cypress.config.js | 1 - 1 file changed, 1 deletion(-) diff --git a/cypress.config.js b/cypress.config.js index 8d70cce..cf2ed8f 100644 --- a/cypress.config.js +++ b/cypress.config.js @@ -1,6 +1,5 @@ const {defineConfig} = require('cypress'); module.exports = defineConfig({ - projectId: '8jtx9u', reporter: 'mochawesome', reporterOptions: { charts: false, From 9c82e5837e6d020824c741b8d42c5467833e4408 Mon Sep 17 00:00:00 2001 From: Vadym Nastoiashchyi <58398016+VadimNastoyashchy@users.noreply.github.com> Date: Fri, 2 Feb 2024 10:08:30 +0200 Subject: [PATCH 4/5] Update github-actions-manually.yml --- .github/workflows/github-actions-manually.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/github-actions-manually.yml b/.github/workflows/github-actions-manually.yml index 44ae6aa..6ec97e8 100644 --- a/.github/workflows/github-actions-manually.yml +++ b/.github/workflows/github-actions-manually.yml @@ -16,4 +16,4 @@ jobs: - name: Install dependencies run: npm install - name: Cypress run - run: npx cypress run --record --key acf5a95a-f5fe-4d53-818a-a6afa18e512c --parallel + run: npx cypress run From cf53fc0ea6faf5181ba8eff71b11e69059c94f5a Mon Sep 17 00:00:00 2001 From: Oleh Babenko Date: Mon, 5 Feb 2024 19:56:18 +0200 Subject: [PATCH 5/5] Small fix --- cypress/src/components/Footer.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cypress/src/components/Footer.js b/cypress/src/components/Footer.js index 7b9afb6..c725346 100644 --- a/cypress/src/components/Footer.js +++ b/cypress/src/components/Footer.js @@ -19,7 +19,7 @@ export default class Footer { expect(response.status).eq(404); } else { - console.log(`${Cypress.$(element).attr('href')}${response.status}`); + console.log(`${element.attr('href')}${response.status}`); } }); });