From 2e8caf6e8f929f1eed9615cf4a390ab7ba13faec Mon Sep 17 00:00:00 2001 From: alexm Date: Mon, 3 Feb 2025 13:15:50 +0100 Subject: [PATCH] test: refs #6695 try run e2e parallel --- Jenkinsfile | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index eff34ecbc..ee6c0ff7f 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -131,16 +131,16 @@ pipeline { } } } - stage('Run E2E') { + stage('Run: Globals') { parallel{ - stage('Claim') { + stage('outLogin') { steps { - sh 'docker-compose -f docker-compose.e2e.yml run e2e npx cypress run --config specPattern=test/cypress/integration/claim/**/*.spec.js' + sh 'docker-compose -f docker-compose.e2e.yml run e2e npx cypress run --config specPattern=test/cypress/integration/outLogin/**/*.spec.js' } } - stage('Ticket') { + stage('vnComponent') { steps { - sh 'docker-compose -f docker-compose.e2e.yml run e2e npx cypress run --config specPattern=test/cypress/integration/ticket/**/*.spec.js' + sh 'docker-compose -f docker-compose.e2e.yml run e2e npx cypress run --config specPattern=test/cypress/integration/vnComponent/**/*.spec.js' } } }