diff --git a/Jenkinsfile b/Jenkinsfile index dfef29c5833..8efc2f8801a 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -116,7 +116,7 @@ pipeline { def image = docker.build('lilium-dev', '-f docs/Dockerfile.dev docs') sh "docker-compose ${env.COMPOSE_PARAMS} up -d" image.inside("--network ${env.COMPOSE_PROJECT}_default -e CI -e TZ") { - sh 'cypress run --browser chromium --spec test/cypress/integration/claim/claimAction.spec.js' + sh 'cypress run --browser chromium' } } } @@ -124,7 +124,7 @@ pipeline { always { sh "docker-compose ${env.COMPOSE_PARAMS} down" junit( - testResults: 'junit/cypress.xml', + testResults: 'junit/e2e.xml', allowEmptyResults: true ) } diff --git a/cypress.config.js b/cypress.config.js index bb21028cdbd..84ffc68a8c7 100644 --- a/cypress.config.js +++ b/cypress.config.js @@ -11,7 +11,7 @@ if (process.env.CI) { urlHost = 'front'; reporter = 'junit'; reporterOptions = { - mochaFile: 'junit/cypress.xml', + mochaFile: 'junit/e2e.xml', toConsole: false, }; } else {