We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 073e875 commit 0e3b661Copy full SHA for 0e3b661
lib/vows/suite.js
@@ -209,4 +209,8 @@ this.Suite.prototype = new(function () {
209
};
210
211
this.runParallel = function () {};
212
+
213
+ this.export = function (exports) {
214
+ return exports.vows = this;
215
+ };
216
});
test/vows-test.js
@@ -272,4 +272,4 @@ vows.describe("Vows").addVows({
272
"A 3rd test suite": {
273
"should run last": function () {}
274
}
275
-});
+}).export(this);
0 commit comments