From 982e172250d9e4ab9a6fe539970a759ca98e2547 Mon Sep 17 00:00:00 2001 From: Rafael <80526390+rafael-qazion@users.noreply.github.com> Date: Wed, 17 Jul 2024 12:06:35 -0300 Subject: [PATCH] fix: manual workflow (e2mock problem) (#1497) --- .github/workflows/manual-e2e-tests.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/manual-e2e-tests.yml b/.github/workflows/manual-e2e-tests.yml index 77400c669..869f10ec2 100644 --- a/.github/workflows/manual-e2e-tests.yml +++ b/.github/workflows/manual-e2e-tests.yml @@ -4,7 +4,7 @@ on: workflow_dispatch: inputs: specName: - description: 'Test file name (without .cy.js)' + description: 'Test file name (e.g. cypress/e2e/waf.cy.js)' required: true environmentName: description: 'Environment name (dev | stage | prod)' @@ -37,7 +37,7 @@ jobs: browser: chrome wait-on: 'http://localhost:5173/' wait-on-timeout: 120 - spec: cypress/e2e/${{ github.event.inputs.specName }}.cy.js + spec: ${{ github.event.inputs.specName }} config-file: cypress.config.${{ github.event.inputs.environmentName }}.js env: environment=${{ github.event.inputs.environmentName }}