diff --git a/Jenkinsfile b/Jenkinsfile index bb1e248..87ca6bf 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -25,7 +25,7 @@ pipeline { } stage('Run tests') { steps { - sh 'cucumber' + sh 'cucumber features --format json --out reports' } } stage('Report results') { @@ -39,6 +39,7 @@ pipeline { reportFiles: 'index.html', reportName: 'Test Results', reportTitles: 'Test Coverage']) + livingDocs() } } }