diff --git a/docs/3-revenge-of-the-automated-testing/2a-jenkins.md b/docs/3-revenge-of-the-automated-testing/2a-jenkins.md index edb9c0fd..ceeab9cf 100644 --- a/docs/3-revenge-of-the-automated-testing/2a-jenkins.md +++ b/docs/3-revenge-of-the-automated-testing/2a-jenkins.md @@ -46,6 +46,7 @@ // 📰 Post steps go here post { always { + dir('pet-battle'){ junit 'junit.xml' publishHTML target: [ allowMissing: true, @@ -55,6 +56,7 @@ reportFiles: 'index.html', reportName: 'Web Code Coverage' ] + } } } ```