test: refs #6695 try run e2e parallel
gitea/salix-front/pipeline/pr-dev There was a failure building this commit Details

This commit is contained in:
Alex Moreno 2025-02-03 13:15:50 +01:00
parent 258ff52e3c
commit 2e8caf6e8f
1 changed files with 5 additions and 5 deletions

10
Jenkinsfile vendored
View File

@ -131,16 +131,16 @@ pipeline {
} }
} }
} }
stage('Run E2E') { stage('Run: Globals') {
parallel{ parallel{
stage('Claim') { stage('outLogin') {
steps { 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 { 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'
} }
} }
} }