Inyectando un simulacro en un servicio AngularJS
Tengo un servicio AngularJS escrito y me gustaría probarlo por unidad. angular.module('myServiceProvider', ['fooServiceProvider', 'barServiceProvider']). factory('myService', function ($http, fooService, barService) { this.something = function() { // Do something with the injected services }; return this; }); Mi archivo app.js tiene estos registrados: angular .module('myApp', ['fooServiceProvider','barServiceProvider','myServiceProvider'] ) Puedo probar que el DI …