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

21 lines
391 B
JavaScript
Raw Normal View History

2015-12-12 20:08:48 +00:00
'use strict';
2015-06-29 22:51:29 +00:00
2015-12-12 20:08:48 +00:00
(function() {
describe('HomeController', function() {
//Initialize global variables
var scope;
2015-06-29 22:51:29 +00:00
2015-12-12 20:08:48 +00:00
// Load the main application module
beforeEach(module(ApplicationConfiguration.applicationModuleName));
2015-06-29 22:51:29 +00:00
2015-12-12 20:08:48 +00:00
beforeEach(inject(function($controller, $rootScope) {
scope = $rootScope.$new();
2015-06-29 22:51:29 +00:00
$controller('HomeController', {
2015-12-12 20:08:48 +00:00
$scope: scope
});
}));
2015-06-29 22:51:29 +00:00
2015-12-12 20:08:48 +00:00
});
2016-04-21 18:27:51 +00:00
})();