diff options
| author | Igor Minar | 2011-08-14 02:50:59 -0700 |
|---|---|---|
| committer | Igor Minar | 2011-08-19 00:15:21 -0700 |
| commit | 4ba35eb97e8b7b9cf255e556fa0b86c892e76b1b (patch) | |
| tree | 784c3a57d031c68819f5083b7089a262ee5b6423 /lib/jasmine-1.0.1 | |
| parent | 6fb4bf4c543b3e48375221a9c5f1791af31a3ffc (diff) | |
| download | angular.js-4ba35eb97e8b7b9cf255e556fa0b86c892e76b1b.tar.bz2 | |
chore(jasmine): disable 'Jasmine waiting for..' msg
Diffstat (limited to 'lib/jasmine-1.0.1')
| -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); |
