We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2bbef36 commit 1d45e65Copy full SHA for 1d45e65
lib/jasmine-1.0.1/jasmine.js
@@ -2200,7 +2200,8 @@ jasmine.util.inherit(jasmine.WaitsForBlock, jasmine.Block);
2200
jasmine.WaitsForBlock.TIMEOUT_INCREMENT = 10;
2201
2202
jasmine.WaitsForBlock.prototype.execute = function(onComplete) {
2203
- this.env.reporter.log('>> Jasmine waiting for ' + (this.message || 'something to happen'));
+ // (i): disabled this log since its annoying
2204
+ //this.env.reporter.log('>> Jasmine waiting for ' + (this.message || 'something to happen'));
2205
var latchFunctionResult;
2206
try {
2207
latchFunctionResult = this.latchFunction.apply(this.spec);
0 commit comments