Rename UPDATE_INTERVAL to DEFAULT_UPDATE_INTERVAL.

This commit is contained in:
Christian Williams 2009-11-09 17:51:03 -05:00
parent 0f610b03d2
commit 0810e4a01c
3 changed files with 2122 additions and 2122 deletions

File diff suppressed because it is too large Load Diff

View File

@ -10,7 +10,7 @@ jasmine.Env = function() {
this.reporter = new jasmine.MultiReporter();
this.updateInterval = jasmine.UPDATE_INTERVAL
this.updateInterval = jasmine.DEFAULT_UPDATE_INTERVAL
this.lastUpdate = 0;
this.specFilter = function() {
return true;

View File

@ -13,10 +13,10 @@ jasmine.unimplementedMethod_ = function() {
};
/**
* Large or small values here may result in slow test running & "Too much recursion" errors
* Default interval for event loop yields. Small values here may result in slow test running. Zero means no updates until all tests have completed.
*
*/
jasmine.UPDATE_INTERVAL = 250;
jasmine.DEFAULT_UPDATE_INTERVAL = 250;
/**
* Allows for bound functions to be comapred. Internal use only.