Code coverage report for hello/hello_service.js

Statements: 100% (8 / 8)      Branches: 100% (0 / 0)      Functions: 100% (2 / 2)      Lines: 100% (5 / 5)      Ignored: none     

All files » hello/ » hello_service.js
1 2 3 4 5 6 7 8 9 101 1 4     1        
const $inject = ['HelloHelloService', 'BlahService'];
const HelloService = function (helloService, blahService) {
  this.hello = () => helloService.hello() + blahService.blah();
};
 
HelloService.$inject = $inject;
 
export default HelloService;