test: refs #6695 comment test unit
gitea/salix-front/pipeline/pr-dev There was a failure building this commit Details

This commit is contained in:
Alex Moreno 2025-02-05 09:02:14 +01:00
parent ad5d824d8c
commit f7ce244bf2
1 changed files with 19 additions and 19 deletions

38
Jenkinsfile vendored
View File

@ -66,25 +66,25 @@ pipeline {
sh 'pnpm install --prefer-offline' sh 'pnpm install --prefer-offline'
} }
} }
stage('Test: Unit') { // stage('Test: Unit') {
when { // when {
expression { !PROTECTED_BRANCH } // expression { !PROTECTED_BRANCH }
} // }
environment { // environment {
NODE_ENV = "" // NODE_ENV = ""
} // }
steps { // steps {
sh 'pnpm run test:unit:ci' // sh 'pnpm run test:unit:ci'
} // }
post { // post {
always { // always {
junit( // junit(
testResults: 'junitresults.xml', // testResults: 'junitresults.xml',
allowEmptyResults: true // allowEmptyResults: true
) // )
} // }
} // }
} // }
stage('Test: E2E') { stage('Test: E2E') {
when { when {
expression { !PROTECTED_BRANCH } expression { !PROTECTED_BRANCH }