diff --git a/Jenkinsfile b/Jenkinsfile index 8af2fc6ff..2a8854c3a 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -117,11 +117,11 @@ pipeline { sh "docker-compose ${env.COMPOSE_PARAMS} up -d" image.inside("--network ${env.COMPOSE_PROJECT}_default -e CI -e TZ") { // sh 'cypress run --browser chromium' - sh ' - CYPRESS_SPEC_FOLDER="test/cypress/integration" - find $CYPRESS_SPEC_FOLDER -name "*.spec.js" | xargs -n 1 -P 4 -I {} sh -c "cypress run --browser chromium --headless --spec '{}'" - wait; - ' + sh ''' + CYPRESS_SPEC_FOLDER="test/cypress/integration" + find $CYPRESS_SPEC_FOLDER -name "*.spec.js" | xargs -n 1 -P 4 -I {} sh -c "cypress run --browser chromium --headless --spec '{}'" + wait; + ''' } } }