From c8184ba0c7ecc9ac8f66fb7fa8f70dd0c7434dd3 Mon Sep 17 00:00:00 2001 From: Robert Reinhard Date: Mon, 11 Dec 2023 06:57:44 -0800 Subject: [PATCH 1/2] Add project config to cypress.config.js MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit So dependabot tests don’t fail --- cypress.config.js | 1 + 1 file changed, 1 insertion(+) diff --git a/cypress.config.js b/cypress.config.js index b4ba4c4..ec69804 100644 --- a/cypress.config.js +++ b/cypress.config.js @@ -1,6 +1,7 @@ const { defineConfig } = require("cypress"); module.exports = defineConfig({ + projectId: 'b4x3of', e2e: { // Assume local testing From cacd9e767f633483b0b28f5d7b7c8739b20a2586 Mon Sep 17 00:00:00 2001 From: Robert Reinhard Date: Mon, 11 Dec 2023 07:00:30 -0800 Subject: [PATCH 2/2] Remove project id Actions env --- .github/workflows/cypress.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/.github/workflows/cypress.yml b/.github/workflows/cypress.yml index 20d70c0..dfe88b5 100644 --- a/.github/workflows/cypress.yml +++ b/.github/workflows/cypress.yml @@ -28,7 +28,6 @@ jobs: command-prefix: percy exec -- yarn record: true env: - CYPRESS_PROJECT_ID: ${{ secrets.CYPRESS_PROJECT_ID }} CYPRESS_RECORD_KEY: ${{ secrets.CYPRESS_RECORD_KEY }} GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} PERCY_TOKEN: ${{ secrets.PERCY_TOKEN }}