1 2 3 4 5 6 7 8 9 10 11 12 13 | 1x 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; |