- type in module ngMock
Scope type decorated with helper methods useful for testing. These methods are automatically available on any Scope instance when ngMock
module is loaded.
In addition to all the regular Scope
methods, the following helper methods are available:
Methods
-
$countChildScopes();
Counts all the direct and indirect child scopes of the current scope.
The current scope is excluded from the count. The count includes all isolate child scopes.
Returns
number
Total number of child scopes.
-
$countWatchers();
Counts all the watchers of direct and indirect child scopes of the current scope.
The watchers of the current scope are included in the count and so are all the watchers of isolate child scopes.
Returns
number
Total number of watchers.
Please login to continue.