Closed marciomsm closed 7 years ago
I have installed this plugin on Jenkins and I have a pipeline where I run some tests using feature files.
Inside all feature files I inserted the code bellow:
@RunWith(Cucumber.class) @CucumberOptions(plugin ={"json:target/cucumber.json"})
Is it correct? I cannot find cucumber.json. Is there some way to know if the file was generated?
After that, if I use the code bellow, will I be able to see the live documentation?
stage ('Publisher') { step([$class: 'CukedoctorPublisher', featuresDir: 'target/cucumber-json']) }
Thanks.
This documentation helped me:
http://rmpestano.github.io/cukedoctor/
I have installed this plugin on Jenkins and I have a pipeline where I run some tests using feature files.
Inside all feature files I inserted the code bellow:
Is it correct? I cannot find cucumber.json. Is there some way to know if the file was generated?
After that, if I use the code bellow, will I be able to see the live documentation?
Thanks.