Files
meanTorrent/modules/core/tests/client/home.client.controller.tests.js
Ryan Hutchison ef3a3f9548 formatting reboot (space-2 and consistency)
JSCS fixes

update editorconfig
2015-07-31 10:04:02 -04:00

25 lines
582 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', {
$scope: scope
});
}));
it('should expose the authentication service', function () {
expect(scope.authentication).toBeTruthy();
});
});
})();