2 concerns mentioned below
- Unable to change report directory of karate html reports. I tried with below snippet by using both relative and absolute path of new dir.
@testpathchange Scenario: Test report * configure report = { dir: 'src/test/java' } * print "Hello Test"
I also added this in karate-config.js
karate.configure('report', { dir: 'src/test/java' });
but report dir didn't change
- [Updated] I noticed that for every run from ParalleRunner 'karate-summary.html' gets generated but when run using Junit5 it doesn't generate 'karate-summary.html', it only generate feature specific html
Also, ParallelRunner doesn't generate cucumber.json file even if I use outputCucumberJson(true) in testParallel() method
.outputCucumberJson(true)