tellform/public/modules/core/tests/unit/controllers/header.client.controller.test.js
2015-08-25 14:33:52 -07:00

24 lines
605 B
JavaScript
Executable file

// 'use strict';
// (function() {
// describe('HeaderController', function() {
// //Initialize global variables
// var scope,
// HeaderController;
// // Load the main application module
// beforeEach(module(ApplicationConfiguration.applicationModuleName));
// beforeEach(inject(function($controller, $rootScope) {
// scope = $rootScope.$new();
// HeaderController = $controller('HeaderController', {
// $scope: scope
// });
// }));
// it('should expose the authentication service', function() {
// expect(scope.authentication).toBeTruthy();
// });
// });
// })();