chore(jasmine): disable 'Jasmine waiting for..' msg

This commit is contained in:
Igor Minar
2011-08-14 02:50:59 -07:00
parent 6fb4bf4c54
commit 4ba35eb97e

View File

@@ -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);