Code coverage report for istanbul/lib/report/none.js

Statements: 100% (6 / 6)      Branches: 100% (0 / 0)      Functions: 100% (2 / 2)      Lines: 100% (6 / 6)     

All files » istanbul/lib/report/ » none.js
1 /*
2 Copyright (c) 2012, Yahoo! Inc. All rights reserved.
3 Copyrights licensed under the New BSD License. See the accompanying LICENSE file for terms.
4 */
5
6 1 var util = require('util'),
7 Report = require('./index');
8
9 1 function NoneReport() {
10 1 Report.call(this);
11 }
12
13 1 NoneReport.TYPE = 'none';
14
15 1 Report.mix(NoneReport, {
16 writeReport: function (collector, sync) {
17 //noop
18 }
19 });
20
21 1 module.exports = NoneReport;
22