All files / tests custom-internal-reporter.js

100% Statements 4/4
100% Branches 0/0
100% Functions 1/1
100% Lines 4/4
1 2 3 4 5 6 7 8 9 10 11 12 131x 1x             1x     1x  
var mocha = require('mocha');
var Base = mocha.reporters.Base;
 
/**
 * This is a project-local custom reporter which is used as a stub in tests
 * to verify if loading reporters from a path (absolute or relative) is successful
 */
function CustomReporterStub(runner) {
  Base.call(this, runner);
}
 
module.exports = CustomReporterStub;