add a setting for it

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

4
Jenkinsfile vendored
View File

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