JsTestResultReporter reporter;
//pick a reporter implementation
if(report.getType().trim().equalsIgnoreCase("plain")) {
reporter = new PlainReporter();
} else {
//default to plain reporter
reporter = new PlainReporter();
}
if(report.getDestFile() == null) {
error("Could not write a report, destFile attribute was not set");
continue;