add setTimeout to Queue so reporters get periodic updates

This commit is contained in:
ragaskar
2009-08-13 07:52:44 -07:00
parent 7b63960db0
commit 454d453207
7 changed files with 61 additions and 17 deletions
+1 -1
View File
@@ -7,7 +7,7 @@
jasmine.Runner = function(env) {
var self = this;
self.env = env;
self.queue = new jasmine.Queue();
self.queue = new jasmine.Queue(env);
};
jasmine.Runner.prototype.execute = function() {