#6911 save on enter #207

Merged
jsegarra merged 50 commits from 6911-saveOnEnter into dev 2024-06-07 07:20:48 +00:00
1 changed files with 5 additions and 9 deletions
Showing only changes of commit c070969d7d - Show all commits

14
Jenkinsfile vendored
View File

@ -75,16 +75,12 @@ pipeline {
steps { steps {
sh 'npm run test:unit:ci' sh 'npm run test:unit:ci'
} }
post { post {
always { always {
script { junit(
try { testResults: 'junitresults.xml',
junit 'junitresults.xml' allowEmptyResults: true
junit 'junit.xml' )
} catch (e) {
echo e.toString()
}
}
} }
} }
} }