Code coverage report for hello/hello_hello_service.js

Statements: 87.5% (7 / 8)      Branches: 100% (0 / 0)      Functions: 0% (0 / 2)      Lines: 80% (4 / 5)      Ignored: 1 statement     

All files » hello/ » hello_hello_service.js
1 2 3 4 5 6 7 8 9 101 1       1        
const $inject = [];
const HelloHelloService = function () {
  this.hello = () => 'hello';
};
 
HelloHelloService.$inject = $inject;
 
export default HelloHelloService;