1

サービスの 1 つに依存するディレクティブがあります。getcustomers() というメソッドがあります。ディレクティブをテストしようとしているときに、そのサービスを注入するにはどうすればよいですか?

4

1 に答える 1

1
  var app = angular.module('mymod', []);
        app.service('myser', myservicename);
        app.directive('mydir', mydir);

//Before Beforeeach(inject) 
beforeEach(module('mymod'));  //This loads all the necessary dependencies for your directive


spyOn(myservice, 'methodname').andCallThrough();

That's it..above line mocks the service call and lets you call it....
于 2013-02-18T20:26:56.913 に答える