From 79059c5e597a1eb801806412e593a0d51b0fa340 Mon Sep 17 00:00:00 2001 From: yagni Date: Thu, 6 Aug 2015 15:40:36 -0500 Subject: [PATCH] Fix so null reporter builds again. --- lib/reporters/null-reporter.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lib/reporters/null-reporter.js b/lib/reporters/null-reporter.js index f8046b7..a6ef455 100644 --- a/lib/reporters/null-reporter.js +++ b/lib/reporters/null-reporter.js @@ -7,5 +7,7 @@ var Reporter = require('../reporter'); */ module.exports = Reporter.extend({ report: function(/* coverageData */) { + }, + processOptions: function(/* options */) { } });