Code coverage report for server/boot/restApi.js

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

All files » server/boot/ » restApi.js
1 2 3 4 51 1 1    
module.exports = function mountRestApi(app) {
  var restApiRoot = app.get('restApiRoot');
  app.use(restApiRoot, app.loopback.rest());
};