removing jasmine.VERBOSE - not used

This commit is contained in:
Davis W. Frank
2012-12-08 12:02:42 -08:00
parent 668dd784ef
commit 30bf565e69
3 changed files with 11 additions and 15 deletions

View File

@@ -5,6 +5,8 @@
* @namespace
*/
var jasmine = {};
// TODO: do we need this now that we have boot.js?
if (typeof window == "undefined" && typeof exports == "object") {
exports.jasmine = jasmine
}
@@ -24,12 +26,6 @@ jasmine.unimplementedMethod_ = function() {
*/
jasmine.undefined = jasmine.___undefined___;
/**
* Show diagnostic messages in the console if set to true
*
*/
jasmine.VERBOSE = false;
/**
* Default interval in milliseconds for event loop yields (e.g. to allow network activity or to refresh the screen with the HTML-based runner). Small values here may result in slow test running. Zero means no updates until all tests have completed.
*