From 07da71b3e08d4f8c07e8c6e5796c1859a4f116ce Mon Sep 17 00:00:00 2001 From: Joe Lapp Date: Mon, 1 Aug 2016 18:44:13 -0500 Subject: [PATCH] initialized _only to null --- lib/results.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/results.js b/lib/results.js index ec23bf2a..efc60ce3 100644 --- a/lib/results.js +++ b/lib/results.js @@ -22,7 +22,7 @@ function Results () { this.pass = 0; this._stream = through(); this.tests = []; - this._only = 0; + this._only = null; } Results.prototype.createStream = function (opts) {