Remove jsdoc from unverifiedCount
This commit is contained in:
@@ -126,12 +126,6 @@ getJasmineRequireObj().CallTracker = function(j$) {
|
|||||||
opts.cloneArgs = true;
|
opts.cloneArgs = true;
|
||||||
};
|
};
|
||||||
|
|
||||||
/**
|
|
||||||
* Get the number of unverified invocations of this spy.
|
|
||||||
* @name Spy#calls#unverifiedCount
|
|
||||||
* @function
|
|
||||||
* @return {Integer}
|
|
||||||
*/
|
|
||||||
this.unverifiedCount = function() {
|
this.unverifiedCount = function() {
|
||||||
return calls.reduce((count, call) => count + (call.verified ? 0 : 1), 0);
|
return calls.reduce((count, call) => count + (call.verified ? 0 : 1), 0);
|
||||||
};
|
};
|
||||||
|
|||||||
Reference in New Issue
Block a user