From ad4f8492d496a9e81787e5377d09fb59648b2b34 Mon Sep 17 00:00:00 2001 From: Adam Townsend Date: Mon, 9 Oct 2023 18:30:50 -0700 Subject: [PATCH] add jenkins cucumber functionality --- Jenkinsfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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() } } }