Code coverage report for blah/blah_service.js

Statements: 83.33% (5 / 6)      Branches: 100% (0 / 0)      Functions: 0% (0 / 2)      Lines: 83.33% (5 / 6)      Ignored: 1 statement     

All files » blah/ » blah_service.js
1 2 3 4 5 6 7 8 9 101 1       1   1    
const $inject = [];
const BlahService = function () {
  this.blah = () => 'blah';
};
 
BlahService.$inject = $inject;
 
module.exports = BlahService;