Code coverage report for hello/index.js

Statements: 100% (3 / 3)      Branches: 100% (0 / 0)      Functions: 100% (0 / 0)      Lines: 100% (3 / 3)      Ignored: none     

All files » hello/ » index.js
1 2 3 4 5 6 7 8 9 10 11 12 131       1           1    
const hello = angular.module('hello', [
  require('./../blah/index').name
]);
 
hello
  .service('HelloService', require('./hello_service'))
  .service('HelloHelloService', require('./hello_hello_service'))
  .directive('hello', require('./hello_directive'))
  .controller('HelloController', require('./hello_controller'));
 
module.exports = hello;