aboutsummaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorIgor Minar2011-08-14 02:50:59 -0700
committerIgor Minar2011-08-15 00:21:02 -0700
commit1d45e65f4a026eb0461429f2557a5f0400b7f88e (patch)
treec56eec700b37ef562e596d493e48ad244aa2451c /lib
parent2bbef363e4a97b3af6a6900f9a2021a0d191ca40 (diff)
downloadangular.js-1d45e65f4a026eb0461429f2557a5f0400b7f88e.tar.bz2
chore(jasmine): disable 'Jasmine waiting for..' msg
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);