tellform/public/modules/core/tests/unit/controllers/home.client.controller.test.js
2016-04-21 14:27:51 -04:00

22 lines
427 B
JavaScript
Executable file

'use strict';
(function() {
describe('HomeController', function() {
//Initialize global variables
var scope,
HomeController;
// Load the main application module
beforeEach(module(ApplicationConfiguration.applicationModuleName));
beforeEach(inject(function($controller, $rootScope) {
scope = $rootScope.$new();
HomeController = $controller('HomeController', {
$scope: scope
});
}));
});
})();