Remove jsdoc from unverifiedCount

This commit is contained in:
Eradev
2025-01-18 17:25:07 -05:00
parent 3f8f488a58
commit 289afbf0a6

View File

@@ -126,12 +126,6 @@ getJasmineRequireObj().CallTracker = function(j$) {
opts.cloneArgs = true;
};
/**
* Get the number of unverified invocations of this spy.
* @name Spy#calls#unverifiedCount
* @function
* @return {Integer}
*/
this.unverifiedCount = function() {
return calls.reduce((count, call) => count + (call.verified ? 0 : 1), 0);
};