Tuning to prevent stack overflows in FF

This commit is contained in:
ragaskar
2009-10-05 22:36:10 -07:00
parent 250c483a6b
commit 73c0d57c94
29 changed files with 2106 additions and 2038 deletions
+1 -3
View File
@@ -11,9 +11,7 @@ jasmine.Env = function() {
this.reporter = new jasmine.MultiReporter();
this.updateInterval = 0;
this.updateInterval = 0;
this.updateInterval = jasmine.UPDATE_INTERVAL
this.lastUpdate = 0;
this.specFilter = function() {
return true;
+6
View File
@@ -12,6 +12,12 @@ jasmine.unimplementedMethod_ = function() {
throw new Error("unimplemented method");
};
/**
* Large or small values here may result in slow test running & "Too much recursion" errors
*
*/
jasmine.UPDATE_INTERVAL = 250;
/**
* Allows for bound functions to be comapred. Internal use only.
*