diff options
| author | Igor Minar | 2011-08-14 02:50:59 -0700 | 
|---|---|---|
| committer | Igor Minar | 2011-08-15 00:21:02 -0700 | 
| commit | 1d45e65f4a026eb0461429f2557a5f0400b7f88e (patch) | |
| tree | c56eec700b37ef562e596d493e48ad244aa2451c | |
| parent | 2bbef363e4a97b3af6a6900f9a2021a0d191ca40 (diff) | |
| download | angular.js-1d45e65f4a026eb0461429f2557a5f0400b7f88e.tar.bz2 | |
chore(jasmine): disable 'Jasmine waiting for..' msg
| -rw-r--r-- | lib/jasmine-1.0.1/jasmine.js | 3 | 
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); | 
