Skip to content
This repository has been archived by the owner on Apr 12, 2024. It is now read-only.

Commit

Permalink
docs(angular-mocks): clarify angular.mock.module usage with objects
Browse files Browse the repository at this point in the history
Closes #12354
  • Loading branch information
matthewjh authored and petebacondarwin committed Nov 1, 2015
1 parent 55ad192 commit de2a56b
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/ngMock/angular-mocks.js
Expand Up @@ -2271,8 +2271,9 @@ if (window.jasmine || window.mocha) {
* @param {...(string|Function|Object)} fns any number of modules which are represented as string
* aliases or as anonymous module initialization functions. The modules are used to
* configure the injector. The 'ng' and 'ngMock' modules are automatically loaded. If an
* object literal is passed they will be registered as values in the module, the key being
* the module name and the value being what is returned.
* object literal is passed each key-value pair will be registered on the module via
* {@link auto.$provide $provide}.value, the key being the string name (or token) to associate
* with the value on the injector.
*/
window.module = angular.mock.module = function() {
var moduleFns = Array.prototype.slice.call(arguments, 0);
Expand Down

0 comments on commit de2a56b

Please sign in to comment.