diff --git a/src/core/CallTracker.js b/src/core/CallTracker.js index 6baf28fc..d123aed5 100644 --- a/src/core/CallTracker.js +++ b/src/core/CallTracker.js @@ -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); };