mirror of
https://github.com/Hopiu/angular.js.git
synced 2026-05-13 01:13:08 +00:00
chore(jasmine): disable 'Jasmine waiting for..' msg
This commit is contained in:
parent
6fb4bf4c54
commit
4ba35eb97e
1 changed files with 2 additions and 1 deletions
|
|
@ -2200,7 +2200,8 @@ jasmine.util.inherit(jasmine.WaitsForBlock, jasmine.Block);
|
||||||
jasmine.WaitsForBlock.TIMEOUT_INCREMENT = 10;
|
jasmine.WaitsForBlock.TIMEOUT_INCREMENT = 10;
|
||||||
|
|
||||||
jasmine.WaitsForBlock.prototype.execute = function(onComplete) {
|
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;
|
var latchFunctionResult;
|
||||||
try {
|
try {
|
||||||
latchFunctionResult = this.latchFunction.apply(this.spec);
|
latchFunctionResult = this.latchFunction.apply(this.spec);
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue