Don't show 'Jasmine waiting for...' console messages unless jasmine.VERBOSE is set to true
This commit is contained in:
parent
c30f7d1aa7
commit
118324b451
|
@ -10,6 +10,37 @@ describe('WaitsForBlock', function () {
|
||||||
onComplete = jasmine.createSpy("onComplete");
|
onComplete = jasmine.createSpy("onComplete");
|
||||||
});
|
});
|
||||||
|
|
||||||
|
describe("jasmine.VERBOSE", function() {
|
||||||
|
var jasmineVerboseOriginal;
|
||||||
|
beforeEach(function() {
|
||||||
|
jasmineVerboseOriginal = jasmine.VERBOSE;
|
||||||
|
spyOn(env.reporter, 'log');
|
||||||
|
|
||||||
|
});
|
||||||
|
it('do not show information if jasmine.VERBOSE is set to false', function () {
|
||||||
|
jasmine.VERBOSE = false;
|
||||||
|
var latchFunction = function() {
|
||||||
|
return true;
|
||||||
|
};
|
||||||
|
var block = new jasmine.WaitsForBlock(env, timeout, latchFunction, message, spec);
|
||||||
|
expect(env.reporter.log).not.toHaveBeenCalled();
|
||||||
|
block.execute(onComplete);
|
||||||
|
expect(env.reporter.log).not.toHaveBeenCalled();
|
||||||
|
jasmine.VERBOSE = jasmineVerboseOriginal;
|
||||||
|
});
|
||||||
|
it('show information if jasmine.VERBOSE is set to true', function () {
|
||||||
|
jasmine.VERBOSE = true;
|
||||||
|
var latchFunction = function() {
|
||||||
|
return true;
|
||||||
|
};
|
||||||
|
var block = new jasmine.WaitsForBlock(env, timeout, latchFunction, message, spec);
|
||||||
|
expect(env.reporter.log).not.toHaveBeenCalled();
|
||||||
|
block.execute(onComplete);
|
||||||
|
expect(env.reporter.log).toHaveBeenCalled();
|
||||||
|
jasmine.VERBOSE = jasmineVerboseOriginal;
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
it('onComplete should be called if the latchFunction returns true', function () {
|
it('onComplete should be called if the latchFunction returns true', function () {
|
||||||
var latchFunction = function() {
|
var latchFunction = function() {
|
||||||
return true;
|
return true;
|
||||||
|
|
|
@ -6,7 +6,9 @@ jasmine.WaitsBlock = function(env, timeout, spec) {
|
||||||
jasmine.util.inherit(jasmine.WaitsBlock, jasmine.Block);
|
jasmine.util.inherit(jasmine.WaitsBlock, jasmine.Block);
|
||||||
|
|
||||||
jasmine.WaitsBlock.prototype.execute = function (onComplete) {
|
jasmine.WaitsBlock.prototype.execute = function (onComplete) {
|
||||||
|
if (jasmine.VERBOSE) {
|
||||||
this.env.reporter.log('>> Jasmine waiting for ' + this.timeout + ' ms...');
|
this.env.reporter.log('>> Jasmine waiting for ' + this.timeout + ' ms...');
|
||||||
|
}
|
||||||
this.env.setTimeout(function () {
|
this.env.setTimeout(function () {
|
||||||
onComplete();
|
onComplete();
|
||||||
}, this.timeout);
|
}, this.timeout);
|
||||||
|
|
|
@ -21,7 +21,9 @@ 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) {
|
||||||
|
if (jasmine.VERBOSE) {
|
||||||
this.env.reporter.log('>> Jasmine waiting for ' + (this.message || 'something to happen'));
|
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);
|
||||||
|
|
|
@ -22,6 +22,12 @@ jasmine.unimplementedMethod_ = function() {
|
||||||
*/
|
*/
|
||||||
jasmine.undefined = jasmine.___undefined___;
|
jasmine.undefined = jasmine.___undefined___;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Show diagnostic messages in the console if set to true
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
jasmine.VERBOSE = false;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Default interval in milliseconds for event loop yields (e.g. to allow network activity or to refresh the screen with the HTML-based runner). Small values here may result in slow test running. Zero means no updates until all tests have completed.
|
* Default interval in milliseconds for event loop yields (e.g. to allow network activity or to refresh the screen with the HTML-based runner). Small values here may result in slow test running. Zero means no updates until all tests have completed.
|
||||||
*
|
*
|
||||||
|
|
Loading…
Reference in New Issue