8714-devToTest #1547

Merged
alexm merged 712 commits from 8714-devToTest into test 2025-03-04 14:08:01 +00:00
2 changed files with 3 additions and 3 deletions
Showing only changes of commit 088fd0b710 - Show all commits

4
Jenkinsfile vendored
View File

@ -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
)
}

View File

@ -11,7 +11,7 @@ if (process.env.CI) {
urlHost = 'front';
reporter = 'junit';
reporterOptions = {
mochaFile: 'junit/cypress.xml',
mochaFile: 'junit/e2e.xml',
toConsole: false,
};
} else {