Files
dss.web/client/app/components/footer/footer.controller.spec.js
2016-09-16 22:05:45 +01:00

22 lines
447 B
JavaScript

'use strict';
describe('Controller: FooterCtrl', function () {
// load the controller's module
beforeEach(module('dssWebApp'));
var FooterCtrl, scope;
// Initialize the controller and a mock scope
beforeEach(inject(function ($controller, $rootScope) {
scope = $rootScope.$new();
FooterCtrl = $controller('FooterCtrl', {
$scope: scope
});
}));
it('should ...', function () {
expect(1).toEqual(1);
});
});