We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d6ba141 commit f1ff2c1Copy full SHA for f1ff2c1
lib/vows/suite.js
@@ -162,7 +162,7 @@ this.Suite.prototype = new(function () {
162
// duplicates.
163
if (! old) Array.prototype.unshift.apply(ctx.topics, arguments);
164
});
165
- topic.setMaxListeners(Infinity);
+ if (topic.setMaxListeners) { topic.setMaxListeners(Infinity) }
166
167
// Now run the tests, or sub-contexts
168
Object.keys(ctx.tests).filter(function (k) {
package.json
@@ -9,6 +9,6 @@
9
"main" : "./lib/vows",
10
"bin" : { "vows": "./bin/vows" },
11
"directories" : { "test": "./test" },
12
- "version" : "0.5.4",
+ "version" : "0.5.5",
13
"engines" : {"node": ">=0.3.6"}
14
}
0 commit comments