First, download the file:
"//ajax.googleapis.com/ajax/libs/angularjs/X.Y.Z/angular-mocks.js"
npm install [email protected]
yarn add [email protected]
bower install angular-mocks#X.Y.Z
"//code.angularjs.org/X.Y.Z/angular-mocks.js"
where X.Y.Z is the AngularJS version you are running.
Then, configure your test runner to load angular-mocks.js
after angular.js
. This example uses Karma:
config.set({ files: [ 'build/angular.js', // and other module files you need 'build/angular-mocks.js', '<path/to/application/files>', '<path/to/spec/files>' ] });
Including the angular-mocks.js
file automatically adds the ngMock
module, so your tests are ready to go!
The ngMock
module provides support to inject and mock Angular services into unit tests. In addition, ngMock also extends various core ng services such that they can be inspected and controlled in a synchronous manner within test code.
Name | Description |
---|---|
angular.mock |
Namespace from 'angular-mocks.js' which contains testing related code. |
Name | Description |
---|---|
$exceptionHandlerProvider |
Configures the mock implementation of |
Name | Description |
---|---|
$exceptionHandler |
Mock implementation of |
$log |
Mock implementation of |
$interval |
Mock implementation of the $interval service. |
$animate |
Mock implementation of the |
$httpBackend |
Fake HTTP backend implementation suitable for unit testing applications that use the $http service. |
$timeout |
This service is just a simple decorator for $timeout service that adds a "flush" and "verifyNoPendingTasks" methods. |
$controller |
A decorator for |
$componentController |
A service that can be used to create instances of component controllers. Useful for unit-testing. |
Name | Description |
---|---|
angular.mock.TzDate |
NOTE: this is not an injectable instance, just a globally available mock class of |
$rootScope.Scope |
Scope type decorated with helper methods useful for testing. These methods are automatically available on any Scope instance when |
Name | Description |
---|---|
angular.mock.dump |
NOTE: This is not an injectable instance, just a globally available function. |
angular.mock.module |
NOTE: This function is also published on window for easy access. |
angular.mock.module.sharedInjector |
NOTE: This function is declared ONLY WHEN running tests with jasmine or mocha |
angular.mock.inject |
NOTE: This function is also published on window for easy access. |
© 2010–2017 Google, Inc.
Licensed under the Creative Commons Attribution License 4.0.
https://code.angularjs.org/1.5.11/docs/api/ngMock