tellform/public/modules/core/tests/unit/controllers/header.client.controller.test.js

24 lines
605 B
JavaScript
Raw Normal View History

2015-08-18 21:44:36 +00:00
// 'use strict';
2015-06-29 22:51:29 +00:00
2015-08-18 21:44:36 +00:00
// (function() {
// describe('HeaderController', function() {
// //Initialize global variables
// var scope,
// HeaderController;
2015-06-29 22:51:29 +00:00
2015-08-18 21:44:36 +00:00
// // Load the main application module
// beforeEach(module(ApplicationConfiguration.applicationModuleName));
2015-06-29 22:51:29 +00:00
2015-08-18 21:44:36 +00:00
// beforeEach(inject(function($controller, $rootScope) {
// scope = $rootScope.$new();
2015-06-29 22:51:29 +00:00
2015-08-18 21:44:36 +00:00
// HeaderController = $controller('HeaderController', {
// $scope: scope
// });
// }));
2015-06-29 22:51:29 +00:00
2015-08-18 21:44:36 +00:00
// it('should expose the authentication service', function() {
// expect(scope.authentication).toBeTruthy();
// });
// });
// })();