///
import * as angular from 'angular';
import 'angular-mocks';
import {footer} from './footer';
describe('footer component', () => {
beforeEach(() => {
angular
.module('fountainFooter', ['<%- templateUrl %>'])
.component('fountainFooter', footer);
<%- modules !== 'systemjs' ? 'angular.mock.' : '' %>module('fountainFooter');
});
it('should render \'FountainJS team\'', <%- modules !== 'systemjs' ? 'angular.mock.' : '' %>inject(($rootScope: ng.IRootScopeService, $compile: ng.ICompileService) => {
const element = $compile('')($rootScope);
$rootScope.$digest();
const footer = element.find('a');
expect(footer.html().trim()).toEqual('FountainJS team');
}));
});