Code coverage report for app/components/footer/footer.controller.js

Statements: 100% (10 / 10)      Branches: 100% (2 / 2)      Functions: 100% (2 / 2)      Lines: 100% (3 / 3)      Ignored: 1 statement, 1 branch     

All files » app/components/footer/ » footer.controller.js
1 2 3 4 5 6 7 8 9 10 11                 
class FooterController {
    constructor () {
        this.year = (new Date()).getFullYear();
    }
}
 
FooterController.$inject = [];
 
export default FooterController;