Rename UPDATE_INTERVAL to DEFAULT_UPDATE_INTERVAL.
This commit is contained in:
parent
0f610b03d2
commit
0810e4a01c
File diff suppressed because it is too large
Load Diff
|
@ -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;
|
||||
|
|
|
@ -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.
|
||||
|
|
Loading…
Reference in New Issue