aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorIgor Minar2011-08-14 02:50:59 -0700
committerIgor Minar2011-08-19 00:15:21 -0700
commit4ba35eb97e8b7b9cf255e556fa0b86c892e76b1b (patch)
tree784c3a57d031c68819f5083b7089a262ee5b6423
parent6fb4bf4c543b3e48375221a9c5f1791af31a3ffc (diff)
downloadangular.js-4ba35eb97e8b7b9cf255e556fa0b86c892e76b1b.tar.bz2
chore(jasmine): disable 'Jasmine waiting for..' msg
-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);