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

21 lines
391 B
JavaScript
Executable file

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