diff --git a/lib/vows/suite.js b/lib/vows/suite.js index 486d017..80f4b35 100644 --- a/lib/vows/suite.js +++ b/lib/vows/suite.js @@ -204,6 +204,8 @@ this.Suite.prototype = new(function () { this.run = function (options, callback) { var that = this, start; + options = options || {}; + this.matcher = options.matcher || this.matcher; this.reporter = options.reporter || this.reporter;