Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.
.then(() => {
const output = reportBuilder.build();
fs.writeFileSync(__dirname + '/../lighthouse-report.xml', output);
logger.log(output);
});
}
JUnitReport.prototype.runEnded = function() {
var output = builder.build();
fs.writeFileSync(__dirname + '/../bbc-a11y-report.xml', output);
this.log(output);
}
JUnitReport.prototype.runEnded = function () {
const output = builder.build();
fs.writeFileSync(__dirname + '/../bbc-a11y-report.xml', output);
this.log(output);
};