Skip to content
Snippets Groups Projects
Commit d087f4e3 authored by OZGCloud's avatar OZGCloud
Browse files

reactivate e2e tests

parent b1076c7c
Branches
Tags
No related merge requests found
......@@ -107,36 +107,36 @@ pipeline {
}
}
// stage('E2E-Test') {
// when {
// branch 'master'
// }
// steps {
// script {
// FAILED_STAGE=env.STAGE_NAME
// }
// container("cypress"){
// sh 'npm --version'
// dir('goofy-client') {
// sh 'npm install'
// sh 'npm run cypress:version'
// sh 'npm run cypress:ci-run'
// }
// }
// }
// post {
// always {
// publishHTML (target: [
// allowMissing: false,
// alwaysLinkToLastBuild: false,
// keepAll: true,
// reportDir: 'goofy-client/apps/goofy-e2e/reports',
// reportFiles: 'report.html',
// reportName: "Goofy E2E-Tests"
// ])
// }
// }
// }
stage('E2E-Test') {
when {
branch 'master'
}
steps {
script {
FAILED_STAGE=env.STAGE_NAME
}
container("cypress"){
sh 'npm --version'
dir('goofy-client') {
sh 'npm install'
sh 'npm run cypress:version'
sh 'npm run cypress:ci-run'
}
}
}
post {
always {
publishHTML (target: [
allowMissing: false,
alwaysLinkToLastBuild: false,
keepAll: true,
reportDir: 'goofy-client/apps/goofy-e2e/reports',
reportFiles: 'report.html',
reportName: "Goofy E2E-Tests"
])
}
}
}
stage('Openshift deploy') {
when {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment