In the configuration, I utilized the code below:
var jasmineReporters = require('jasmine-reporters');
onPrepare: function() {
browser.driver.manage().window().maximize();
browser.params.envi='DEVINT';
//For output reports
jasmine.getEnv().addReporter(new jasmineReporters.JUnitXmlReporter('./test', true, true));
},
The test execution was successful when I ran it, but there are no generated reports visible.
Does anyone have any suggestions on how to resolve this?