fix: update cypressParallel.sh invocation to use an empty string for modules
gitea/salix-front/pipeline/head This commit looks good Details

This commit is contained in:
Alex Moreno 2025-04-07 14:01:51 +02:00
parent 3549f172d6
commit 2b5802a7fb
1 changed files with 1 additions and 1 deletions

2
Jenkinsfile vendored
View File

@ -128,7 +128,7 @@ pipeline {
def modules = sh(script: 'node test/cypress/docker/find/find.js', returnStdout: true).trim()
echo "E2E MODULES: ${modules}"
image.inside("--network ${env.COMPOSE_PROJECT}_default -e CI -e TZ --init") {
sh "sh test/cypress/docker/cypressParallel.sh 1 '${modules}'"
sh "sh test/cypress/docker/cypressParallel.sh 1 ''"
}
}
}