add jenkins cucumber functionality

pull/19/head
Adam Townsend 2023-10-09 18:30:50 -07:00
parent 5bce31baf2
commit ad4f8492d4
1 changed files with 2 additions and 1 deletions

3
Jenkinsfile vendored
View File

@ -25,7 +25,7 @@ pipeline {
} }
stage('Run tests') { stage('Run tests') {
steps { steps {
sh 'cucumber' sh 'cucumber features --format json --out reports'
} }
} }
stage('Report results') { stage('Report results') {
@ -39,6 +39,7 @@ pipeline {
reportFiles: 'index.html', reportFiles: 'index.html',
reportName: 'Test Results', reportName: 'Test Results',
reportTitles: 'Test Coverage']) reportTitles: 'Test Coverage'])
livingDocs()
} }
} }
} }