aboutsummaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
Diffstat (limited to 'lib')
-rw-r--r--lib/jasmine-1.0.1/jasmine.js3
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/jasmine-1.0.1/jasmine.js b/lib/jasmine-1.0.1/jasmine.js
index 964f99ed..be34ecbf 100644
--- a/lib/jasmine-1.0.1/jasmine.js
+++ b/lib/jasmine-1.0.1/jasmine.js
@@ -2200,7 +2200,8 @@ jasmine.util.inherit(jasmine.WaitsForBlock, jasmine.Block);
jasmine.WaitsForBlock.TIMEOUT_INCREMENT = 10;
jasmine.WaitsForBlock.prototype.execute = function(onComplete) {
- this.env.reporter.log('>> Jasmine waiting for ' + (this.message || 'something to happen'));
+ // (i): disabled this log since its annoying
+ //this.env.reporter.log('>> Jasmine waiting for ' + (this.message || 'something to happen'));
var latchFunctionResult;
try {
latchFunctionResult = this.latchFunction.apply(this.spec);