find-node-modules
Version:
Return an array of all parent node_modules directories
13 lines (10 loc) • 336 B
JavaScript
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;