Skip to content

Commit

Permalink
[DELETEME] run func tests
Browse files Browse the repository at this point in the history
Signed-off-by: Kawika Avilla <[email protected]>
  • Loading branch information
kavilla committed Jun 1, 2021
1 parent 20004e7 commit 4dfd36e
Show file tree
Hide file tree
Showing 2 changed files with 150 additions and 148 deletions.
38 changes: 19 additions & 19 deletions Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -26,25 +26,25 @@ pipeline {
}
}
}
stage('Unit tests') {
steps {
script {
DOCKER_IMAGE.inside {
sh 'yarn test:jest -u --ci --verbose' // TODO::Need to remove -u and fix the CI
}
}
}
}
stage('Integ tests') {
steps {
script {
DOCKER_IMAGE.inside {
sh 'yarn test:jest_integration -u --ci --verbose' // TODO::Need to remove -u and fix the CI
sh 'yarn test:mocha'
}
}
}
}
// stage('Unit tests') {
// steps {
// script {
// DOCKER_IMAGE.inside {
// sh 'yarn test:jest -u --ci --verbose' // TODO::Need to remove -u and fix the CI
// }
// }
// }
// }
// stage('Integ tests') {
// steps {
// script {
// DOCKER_IMAGE.inside {
// sh 'yarn test:jest_integration -u --ci --verbose' // TODO::Need to remove -u and fix the CI
// sh 'yarn test:mocha'
// }
// }
// }
// }
stage("Functional tests") {
steps {
functionalDynamicParallelSteps(DOCKER_IMAGE)
Expand Down
Loading

0 comments on commit 4dfd36e

Please sign in to comment.