Files
meanTorrent/modules/core/tests/client/home.client.controller.tests.js
Ryan Hutchison b2462ec86c feat(core): Modify core module to implement style guidelines.
Update the core module to implement the style guidelines.
Reduce size of init.js - moved filter logic out to it's own config.
Rename Menus to menuService
2016-03-23 15:41:57 -04:00

21 lines
466 B
JavaScript

'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 as vm', {
$scope: scope
});
}));
});
}());