node-query/node_modules/grunt-istanbul/node_modules/istanbul/lib/report/none.js

21 lines
399 B
JavaScript

/*
Copyright (c) 2012, Yahoo! Inc. All rights reserved.
Copyrights licensed under the New BSD License. See the accompanying LICENSE file for terms.
*/
var Report = require('./index');
function NoneReport() {
Report.call(this);
}
NoneReport.TYPE = 'none';
Report.mix(NoneReport, {
writeReport: function (/* collector, sync */) {
//noop
}
});
module.exports = NoneReport;