From 33bfb23405994d0ec0427d80bac735a0bb5cec17 Mon Sep 17 00:00:00 2001 From: Adam Townsend Date: Mon, 9 Oct 2023 18:35:50 -0700 Subject: [PATCH] add a setting for it --- Jenkinsfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 87ca6bf..fc8facc 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -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") } } }