Skip to content
This repository was archived by the owner on Apr 12, 2024. It is now read-only.

Commit 4ba35eb

Browse files
committed
chore(jasmine): disable 'Jasmine waiting for..' msg
1 parent 6fb4bf4 commit 4ba35eb

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

lib/jasmine-1.0.1/jasmine.js

+2-1
Original file line numberDiff line numberDiff line change
@@ -2200,7 +2200,8 @@ jasmine.util.inherit(jasmine.WaitsForBlock, jasmine.Block);
22002200
jasmine.WaitsForBlock.TIMEOUT_INCREMENT = 10;
22012201

22022202
jasmine.WaitsForBlock.prototype.execute = function(onComplete) {
2203-
this.env.reporter.log('>> Jasmine waiting for ' + (this.message || 'something to happen'));
2203+
// (i): disabled this log since its annoying
2204+
//this.env.reporter.log('>> Jasmine waiting for ' + (this.message || 'something to happen'));
22042205
var latchFunctionResult;
22052206
try {
22062207
latchFunctionResult = this.latchFunction.apply(this.spec);

0 commit comments

Comments
 (0)